ds_map_create

This function is used to create a new, empty DS map and will return a Handle to it which is then used to access the data structure in all other DS map functions.

 

Syntax:

ds_map_create();

 

Returns:

DS Map

 

Example:

inventory = ds_map_create();

The above code will create a new, empty DS map and store its id index in the variable inventory.