Dictionaries
Dictionaries
Description
Map data with keys that index values.
- configureDictionary - Generate a dictionary with defined key and value types.
- dictionary - Object that maps unique keys to values.
- entries - Key-value pairs of dictionary.
- insert - Add entries to a dictionary.
- isConfigured - Check if dictionary has types assigned to keys and values.
- isKey - Check if dictionary contains key
- keyHash - Create a hash code for a dictionary key.
- keyMatch - Check whether two dictionary keys are same.
- keys - Keys of dictionary.
- lookup - Find value in dictionary by key.
- numEntries - Number of key-value pairs in dictionary.
- remove - Remove dictionary entries.
- types - Types of dictionary keys and values.
- values - Values of dictionary.