DoxigAlpha

get

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.

Function parameters

Parameters

#
key:[]const u8

BufMap copies keys and values before they go into the map and

Types

#
BufMap
BufMap copies keys and values before they go into the map and

Source

Implementation

#
pub fn get(self: BufMap, key: []const u8) ?[]const u8 {
    return self.hash_map.get(key);
}