type of the key
type of the value
Clears all values from the map
Gets the value for the given key if available
the key to look up
the looked up value or undefined if the map does not contain any value associated with the given key
Tests if the map contains value stored by the given key
the key
true if the map contains a value by the given key, false otherwise
Sets the value for the given key. If the map already contains a value stored by the given key, then this value is overridden
the key
the value to associate with the given key
Generated using TypeDoc
A very simple implementation of a map. Do not use with complex objects as Key.