DYNAMIC ARRAY methods
Note:
While designed for dynamic arrays, these methods can also be used on static arrays. However, the semantics differ when applied to static arrays; these variations are outside the scope of this documentation.
| Name | Description |
|---|---|
|
Adds a new element to the end of the array. |
|
Removes all elements of the array. |
|
Copies a complete array to the destination array passed as parameter. |
|
Removes an element from the array. |
|
Returns the length of the array. |
|
Inserts a new element at the given index. |
|
Scans the array to find an element that matches the search parameter. |
|
Scans the array to find an element that matches the search parameter. |
|
Sorts the rows in the array. |
|
Sorts the rows in the array by using a comparison function. |