native
ArrayCreate
Syntax
native Array:ArrayCreate(cellsize=1, reserved=32);
Description
Creates a handle to a dynamically sized array.
It is very important that the cellsize you provide matches up with the buffer sizes
that you pass with subsequent Array{Get,Set,Push} calls.
Parameters
| cellsize | How many cells each entry in the array is. |
|---|---|
| reserved | How many blank entries are created immediately when the array is created. These entries are not valid to read from until called with ArraySet. |
Return
Handle to the array.