Function get [src]
Return the map's copy of the value associated with
a key. The returned string is invalidated if this
key is removed from the map.
Prototype
pub fn get(self: BufMap, key: []const u8) ?[]const u8
Parameters
self: BufMap
key: []const u8
Source
pub fn get(self: BufMap, key: []const u8) ?[]const u8 {
return self.hash_map.get(key);
}