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