/
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 );
ParameterDescription

myLittleMap

The map to clear

Returns

Nothing


mapContains

Evaluates if a key is present in a map.

boolean mapContains
 ( map<any,any>  myMap , 
 any  myKey  );
ParameterDescription

myMap

Name of the map to evaluate

myKey

The requested key

Returns

true or false


mapCreate

Creates a new, empty map.

map<any,a