Type Function StaticStringMap [src]
Alias for std.static_string_map.StaticStringMap
Static string map optimized for small sets of disparate string keys.
Works by separating the keys by length at initialization and only checking
strings of equal length at runtime.
Prototype
pub fn StaticStringMap(comptime V: type) type
Parameters
V: type
Source
pub fn StaticStringMap(comptime V: type) type {
return StaticStringMapWithEql(V, defaultEql);
}