Type Function AutoHashMap [src]
Alias for std.hash_map.AutoHashMap
Prototype
pub fn AutoHashMap(comptime K: type, comptime V: type) type
Parameters
K: type
V: type
Source
pub fn AutoHashMap(comptime K: type, comptime V: type) type {
return HashMap(K, V, AutoContext(K), default_max_load_percentage);
}