Type Function AutoHashMapUnmanaged [src]
Prototype
pub fn AutoHashMapUnmanaged(comptime K: type, comptime V: type) type Parameters
K: typeV: type Source
pub fn AutoHashMapUnmanaged(comptime K: type, comptime V: type) type {
return HashMapUnmanaged(K, V, AutoContext(K), default_max_load_percentage);
}