Function: clear
Clears the dictionary.
Function: get
Returns the value for the given key.
Function: getKeys
Returns all keys as an array.
Function: getValues
Returns all values as an array.
Function: put
Stores the value under the given key and returns the previous value for that key.
Function: remove
Removes the value for the given key and returns the value that has been removed.
Function: visit
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
Parameters:
visitor - A function that takes the key and value as arguments.
Generated using TypeDoc
Function: map
Stores the (key, value) pairs in this dictionary.