ShiftArrayUp Function

Shifts an array up. All array contents after and including the given index are shifted up by one, and the given index is then "free." After shifting, the contents of the given index is undefined.

void ShiftArrayUp(Handle array, int index)

Parameters

Handle array

Array Handle.

int index

Index in the array to shift up from.

Errors

Invalid Handle or invalid index.