Vector2FArray
An array of Vector2F values.
When targeting the JVM, instances of this class are represented as long[]
.
Functions
Returns 1st element from the array.
Returns 2nd element from the array.
Returns 3rd element from the array.
Returns 4th element from the array.
Returns 5th element from the array.
Checks if all elements in the specified collection are contained in this array.
Copies this array or its subrange into the destination array and returns that array.
Returns new array which is a copy of the original array.
Returns new array which is a copy of the original array, resized to the given newSize. The copy is either truncated or padded at the end with Vector2F.ZERO values if necessary.
Returns a new array which is a copy of the specified range of the original array.
Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this array.
Returns the first element, or null
if the array is empty.
Returns the first element matching the given predicate, or null
if element was not found.
Performs the given action on each element, providing sequential index with the element.
Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.
Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.
Returns true
if the array is not empty.
Creates an iterator over the elements of the array.
Returns last index of element, or -1 if the array does not contain element.
Returns the last element, or null
if the array is empty.
Returns the last element matching the given predicate, or null
if no such element was found.
Returns an array containing all elements of the original array and then the given element.
Returns an array containing all elements of the original array and then all elements of the given elements array.
Returns an array containing all elements of the original array and then all elements of the given elements collection.
Returns a random element from this array, or null
if this array is empty.
Returns a random element from this array using the specified source of randomness, or null
if this array is empty.
Returns an array with elements of this array in reversed order.
Returns single element, or null
if the array is empty or has more than one element.
Returns the single element matching the given predicate, or null
if element was not found or more than one element was found.
Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.
Returns a list of all elements sorted according to the specified comparator.
Returns the sum of all values produced by selector function applied to each element in the array.
Appends all elements to the given destination collection.
Returns a typed object array containing all the elements of this primitive array.