Type Function AutoArrayHashMapUnmanaged [src]
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: type
V: type
Source
pub fn AutoArrayHashMapUnmanaged(comptime K: type, comptime V: type) type {
return ArrayHashMapUnmanaged(K, V, AutoContext(K), !autoEqlIsCheap(K));
}