Generic array datatype. Generic array, contains several elements of any type, accessible by numerical index starting at 0. Negative indices can be used to count from the right, like in Python. Arrays are always passed by reference. Construct an array from a [PoolColorArray]. Construct an array from a [PoolVector3Array]. Construct an array from a [PoolVector2Array]. Construct an array from a [PoolStringArray]. Construct an array from a [PoolRealArray]. Construct an array from a [PoolIntArray]. Construct an array from a [PoolByteArray]. Append an element at the end of the array (alias of [method push_back]). Returns the last element of the array if the array is not empty (size>0). Clear the array (resize to 0). Return the amount of times an element is in the array. Return true if the array is empty (size==0). Remove the first occurrence of a value from the array. Searches the array for a value and returns its index or -1 if not found. Optionally, the initial search index can be passed. Searches the array in reverse order for a value and returns its index or -1 if not found. Returns the first element of the array if the array is not empty (size>0). Return true if the array contains given value. [codeblock] [ "inside", 7 ].has("inside") == true [ "inside", 7 ].has("outside") == false [ "inside", 7 ].has(7) == true [ "inside", 7 ].has("7") == false [/codeblock] Return a hashed integer value representing the array contents. 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()). Reverse the order of the elements in the array (so first element will now be the last). Remove the last element of the array. Remove the first element of the array. Append an element at the end of the array. Add an element at the beginning of the array. Remove an element from the array by index. 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. Searches the array in reverse order. Optionally, a start search index can be passed. If negative, the start index is considered relative to the end of the array. Return the amount of elements in the array. 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. Note: you cannot randomize the return value as the heapsort algorithm expects a deterministic result. Doing so will result in unexpected behavior.