Element Access
GetAt | Returns the value at a given index. |
ElementAt | Returns a temporary reference to the element pointer within the array. |
SetAt | Sets the value for a given index; array not allowed to grow. |
SetAtGrow | Sets the value for a given index; grows the array if necessary. |
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. |
InsertAt | Inserts an element (or all the elements in another array) at a specified index. |
Operators
operator[] | Sets or gets the element at the specified index. |