Abstract
A mapping is a Collection indexed by keys that may have associated values.
V
Returns the total number of elements in the collection.
Adds a new item to the collection.
The item to add to the collection.
Remove all items from the collection
Checks if item is present in the collection.
true when the element is found, else false
true
false
The item to search for in the collection.
Check if there are no items.
true if is empty.
Returns an iterator of all the [key, value] pairs in the map.
[key, value]
Returns the value for the given key, or return defaults if not found.
defaults
Optional
Returns an iterator of all the keys in the map.
keys
Sets the value for the given key.
Returns an iterator of all the values in the map.
values
Generated using TypeDoc
A mapping is a Collection indexed by keys that may have associated values.
Abstract
Template
V