PushArrayArray

Last Updated2008-04-24
Created At2007-07-24

Pushes an array of cells onto the end of an array. The cells are pushed as a block (i.e. the entire array sits at the index), rather than pushing each cell individually.

native int PushArrayArray(Handle array, const any[] values, int size = -1)

Parameters

Handle array
Array Handle.
const any[] values
Block of values to copy.
int size
If not set, the number of elements copied from the array will be equal to the blocksize. If set higher than the blocksize, the operation will be truncated.

Return Value

int Index of the new entry.

Error

Invalid Handle or out of memory.