Abstract
A map with keys that are serializable. Serialized keys are considered equal if their serialized values are equal. Otherwise, the map behaves like a regular Map.
Optional
Protected
Readonly
true if an element in the Map existed and has been removed, or false if the element does not exist.
Returns an iterable of key, value pairs for every entry in the map.
Returns an iterable of keys in the map
Adds a new element with a specified key and value to the Map. If an element with the same key already exists, the element will be updated.
Returns an iterable of values in the map
A map with keys that are serializable. Serialized keys are considered equal if their serialized values are equal. Otherwise, the map behaves like a regular Map.