Type Function AutoArrayHashMap [src]
Alias for std.array_hash_map.AutoArrayHashMap
An ArrayHashMap with default hash and equal functions.
See AutoContext for a description of the hash and equal implementations.
Prototype
pub fn AutoArrayHashMap(comptime K: type, comptime V: type) type
Parameters
K: type
V: type
Source
pub fn AutoArrayHashMap(comptime K: type, comptime V: type) type {
return ArrayHashMap(K, V, AutoContext(K), !autoEqlIsCheap(K));
}