Type Function AutoArrayHashMapUnmanaged [src]

Alias for std.array_hash_map.AutoArrayHashMapUnmanaged

An ArrayHashMapUnmanaged with default hash and equal functions. See AutoContext for a description of the hash and equal implementations.

Prototype

pub fn AutoArrayHashMapUnmanaged(comptime K: type, comptime V: type) type

Parameters

K: typeV: type

Source

pub fn AutoArrayHashMapUnmanaged(comptime K: type, comptime V: type) type { return ArrayHashMapUnmanaged(K, V, AutoContext(K), !autoEqlIsCheap(K)); }