This section describes functions that enable use of hash maps.
The following functions for Map described here are:
Table of Contents | ||
---|---|---|
|
mapClear
Removes all entries in a map.
...
Info | ||
---|---|---|
| ||
An example of a map definition, including assignment of the first key/value pair.
|
mapCreateOrdered
Creates a new, empty ordered map. This function may be useful when the order of keys is of interest.
Code Block |
---|
map<any,any> mapCreateOrdered
( any myKeyType ,
any myValueType ); |
Parameter | Description |
---|---|
| Defines the data type of the keys in the map |
| Defines the data type of the values, associated with the keys in the map |
Returns | An empty map |
Info | ||
---|---|---|
| ||
An example of a map definition, including assignment of the first key/value pair.
|
mapGet
Retrieves the value of a specified key in a map.
...