ds_list_size

Returns the number of values stored in the given list.

Syntax:

ds_list_size(id);


Argument Description
id The id of the data structure to check.


Returns: Real


Description

This function will return the "size" of the list, ie: the number of items that have been added into it.


Example:

if !ds_list_empty(control_list)
   {
   num = ds_list_size(control_list);
   }

The above code checks a ds_list to see if it is empty or not, and if it is not, it gets the number of items that it contains and stores the value in a variable.


Back: DS Lists
Next: ds_list_add
© Copyright YoYo Games Ltd. 2018 All Rights Reserved