Type Function StringHashMap [src]
Builtin hashmap for strings as keys.
Key memory is managed by the caller. Keys and values
will not automatically be freed.
Prototype
pub fn StringHashMap(comptime V: type) type
Parameters
V: type
Source
pub fn StringHashMap(comptime V: type) type {
return HashMap([]const u8, V, StringContext, default_max_load_percentage);
}