Array¶
Category: Built-In Types
Brief Description¶
Generic array datatype.
Member Functions¶
Array | Array ( ColorArray from ) |
Array | Array ( Vector3Array from ) |
Array | Array ( Vector2Array from ) |
Array | Array ( StringArray from ) |
Array | Array ( RealArray from ) |
Array | Array ( IntArray from ) |
Array | Array ( RawArray from ) |
void | append ( var value ) |
void | clear ( ) |
bool | empty ( ) |
void | erase ( var value ) |
int | find ( var value ) |
int | hash ( ) |
void | insert ( int pos, var value ) |
void | invert ( ) |
bool | is_shared ( ) |
void | pop_back ( ) |
void | pop_front ( ) |
void | push_back ( var value ) |
void | push_front ( var value ) |
void | remove ( int pos ) |
void | resize ( int pos ) |
int | size ( ) |
void | sort ( ) |
void | sort_custom ( Object obj, String func ) |
Description¶
Generic array, contains several elements of any type, accessible by numerical index starting at 0. Arrays are always passed by reference.
Member Function Description¶
- Array Array ( ColorArray from )
Construct an array from a RawArray.
- Array Array ( Vector3Array from )
Construct an array from a RawArray.
- Array Array ( Vector2Array from )
Construct an array from a RawArray.
- Array Array ( StringArray from )
Construct an array from a RawArray.
Construct an array from a RawArray.
Construct an array from a RawArray.
Construct an array from a RawArray.
- void append ( var value )
Append an element at the end of the array (alias of push_back).
- void clear ( )
Clear the array (resize to 0).
- bool empty ( )
Return true if the array is empty (size==0).
- void erase ( var value )
Remove the first occurrence of a value from the array.
- int find ( var value )
Searches the array for a value and returns its index or -1 if not found.
- int hash ( )
Return a hashed integer value representing the array contents.
- void insert ( int pos, var value )
Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()).
- void invert ( )
Reverse the order of the elements in the array (so first element will now be the last).
Get whether this is a shared array instance.
- void pop_back ( )
Remove the last element of the array.
- void pop_front ( )
Remove the first element of the array.
- void push_back ( var value )
Append an element at the end of the array.
- void push_front ( var value )
Add an element at the beginning of the array.
- void remove ( int pos )
Remove an element from the array by index.
- void resize ( int pos )
Resize the array to contain a different number of elements. If the array size is smaller, elements are cleared, if bigger, new elements are Null.
- int size ( )
Return the amount of elements in the array.
- void sort ( )
Sort the array using natural order.
Sort the array using a custom method. The arguments are an object that holds the method and the name of such method. The custom method receives two arguments (a pair of elements from the array) and must return true if the first argument is less than the second, and return false otherwise.