A simple mutable table of objects, accessed by key.
[scriptable, uuid(1dd0cb45-aea3-4a52-8b29-01429a542863)]
Methods
Delete the indicated key-value pair.
@param key The key indicating the pair to be removed.
@return The removed value. If the key doesn't exist,
NS_ERROR_FAILURE will be returned.
Retrieve all keys in the dictionary. @return array of all keys, unsorted.
Find the value indicated by the key.
@param key The lookup key indicating the value.
@return Value indicated by key. If the key doesn't exist,
NS_ERROR_FAILURE will be returned.
Check if a given key is present in the dictionary. @param key Key to check for @return true if present, false if absent.
Add the key-value pair to the dictionary. If the key is already present, replace the old value with the new. @param key The key by which the value can be accessed @param value The value to be stored.
