Type Function StringArrayHashMap [src]
An ArrayHashMap with strings as keys.
Prototype
pub fn StringArrayHashMap(comptime V: type) type
Parameters
V: type
Source
pub fn StringArrayHashMap(comptime V: type) type {
return ArrayHashMap([]const u8, V, StringContext, true);
}