CTypedPtrArray Methods

Element Access Methods

Method Description
Add Adds a new element to the end of an array. Grows the array if necessary.
Append Adds the contents of one array to the end of another. Grows the array if necessary.
Copy Copies another array to the array; grows the array if necessary.
ElementAt Returns a temporary reference to the element pointer within the array.
GetAt Returns the value at a specified index.
InsertAt Inserts an element (or all the elements in another array) at a specified index.
SetAt Sets the value for a specified index; the array is not allowed to grow.
SetAtGrow Sets the value for a specified index; grows the array if necessary.