/
Map Functions(3.0)
Map Functions(3.0)
This section describes functions that enable use of hash maps.
mapClear
Removes all entries in a map.
void mapClear (map<any,any> myLittleMap );
Parameter | Description |
---|---|
| The map to clear |
Returns | Nothing |
mapContains
Evaluates if a key is present in a map.
boolean mapContains ( map<any,any> myMap , any myKey );
Parameter | Description |
---|---|
| Name of the map to evaluate |
| The requested key |
Returns |
|
mapCreate
Creates a new, empty map.
map<any,a