Vector2IArray

An array of Vector2I values.

When targeting the JVM, instances of this class are represented as long[].

Constructors

Link copied to clipboard
constructor(size: Int)

Creates a new array of the specified size, with all elements initialized to zero.

constructor(size: Int, init: (Int) -> Vector2I)

Creates a new array of the specified size, where each element is calculated by calling the specified init function.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
inline fun all(predicate: (Vector2I) -> Boolean): Boolean

Returns true if all elements match the given predicate.

Link copied to clipboard
inline fun any(): Boolean

Returns true if array has at least one element.

inline fun any(predicate: (Vector2I) -> Boolean): Boolean

Returns true if at least one element matches the given predicate.

Link copied to clipboard

Returns a List that wraps the original array.

Link copied to clipboard
inline operator fun component1(): Vector2I

Returns 1st element from the array.

Link copied to clipboard
inline operator fun component2(): Vector2I

Returns 2nd element from the array.

Link copied to clipboard
inline operator fun component3(): Vector2I

Returns 3rd element from the array.

Link copied to clipboard
inline operator fun component4(): Vector2I

Returns 4th element from the array.

Link copied to clipboard
inline operator fun component5(): Vector2I

Returns 5th element from the array.

Link copied to clipboard
open operator override fun contains(element: Vector2I): Boolean

Returns true if element is found in the array.

Link copied to clipboard
open override fun containsAll(elements: Collection<Vector2I>): Boolean

Checks if all elements in the specified collection are contained in this array.

Link copied to clipboard
fun copyInto(destination: Vector2IArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): Vector2IArray

Copies this array or its subrange into the destination array and returns that array.

Link copied to clipboard

Returns new array which is a copy of the original array.

fun copyOf(newSize: Int): Vector2IArray

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 Vector2I.ZERO values if necessary.

Link copied to clipboard
fun copyOfRange(fromIndex: Int, toIndex: Int): Vector2IArray

Returns a new array which is a copy of the specified range of the original array.

Link copied to clipboard
inline fun count(): Int

Returns the number of elements in this array.

inline fun count(predicate: (Vector2I) -> Boolean): Int

Returns the number of elements matching the given predicate.

Link copied to clipboard
inline fun distinct(): List<Vector2I>

Returns a list containing only distinct elements from the given array.

Link copied to clipboard
inline fun <K> distinctBy(selector: (Vector2I) -> K): List<Vector2I>

Returns a list containing only elements from the given array having distinct keys returned by the given selector function.

Link copied to clipboard
fun drop(n: Int): List<Vector2I>

Returns a list containing all elements except first n elements.

Link copied to clipboard

Returns a list containing all elements except last n elements.

Link copied to clipboard
inline fun dropLastWhile(predicate: (Vector2I) -> Boolean): List<Vector2I>

Returns a list containing all elements except last elements that satisfy the given predicate.

Link copied to clipboard
inline fun dropWhile(predicate: (Vector2I) -> Boolean): List<Vector2I>

Returns a list containing all elements except first elements that satisfy the given predicate.

Link copied to clipboard
inline fun elementAt(index: Int): Vector2I

Returns an element at the given index.

Link copied to clipboard
inline fun elementAtOrElse(index: Int, defaultValue: (Int) -> Vector2I): Vector2I

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.

Link copied to clipboard
inline fun elementAtOrNull(index: Int): Vector2I?

Returns an element at the given index or null if the index is out of bounds of this array.

Link copied to clipboard
fun fill(element: Vector2I, fromIndex: Int = 0, toIndex: Int = size)

Fills this array or its subrange with the specified element value.

Link copied to clipboard
inline fun find(predicate: (Vector2I) -> Boolean): Vector2I?

Returns the first element matching the given predicate, or null if no such element was found.

Link copied to clipboard
inline fun findLast(predicate: (Vector2I) -> Boolean): Vector2I?

Returns the last element matching the given predicate, or null if no such element was found.

Link copied to clipboard

Returns the first element.

inline fun first(predicate: (Vector2I) -> Boolean): Vector2I

Returns the first element matching the given predicate.

Link copied to clipboard
inline fun firstOrNull(): Vector2I?

Returns the first element, or null if the array is empty.

inline fun firstOrNull(predicate: (Vector2I) -> Boolean): Vector2I?

Returns the first element matching the given predicate, or null if element was not found.

Link copied to clipboard
inline fun forEach(action: (Vector2I) -> Unit)

Performs the given action on each element.

Link copied to clipboard
inline fun forEachIndexed(action: (index: Int, Vector2I) -> Unit)

Performs the given action on each element, providing sequential index with the element.

Link copied to clipboard
operator fun get(index: Int): Vector2I

Returns the array element at the given index. This method can be called using the index operator.

Link copied to clipboard
inline fun getOrElse(index: Int, defaultValue: (Int) -> Vector2I): Vector2I

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.

Link copied to clipboard
inline fun getOrNull(index: Int): Vector2I?

Returns an element at the given index or null if the index is out of bounds of this array.

Link copied to clipboard
fun indexOf(element: Vector2I): Int

Returns first index of element, or -1 if the array does not contain element.

Link copied to clipboard
inline fun indexOfFirst(predicate: (Vector2I) -> Boolean): Int

Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.

Link copied to clipboard
inline fun indexOfLast(predicate: (Vector2I) -> Boolean): Int

Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.

Link copied to clipboard
open inline override fun isEmpty(): Boolean

Returns true if the array is empty.

Link copied to clipboard
inline fun isNotEmpty(): Boolean

Returns true if the array is not empty.

Link copied to clipboard
open operator override fun iterator(): Vector2IIterator

Creates an iterator over the elements of the array.

Link copied to clipboard
fun last(): Vector2I

Returns the last element.

inline fun last(predicate: (Vector2I) -> Boolean): Vector2I

Returns the last element matching the given predicate.

Link copied to clipboard
fun lastIndexOf(element: Vector2I): Int

Returns last index of element, or -1 if the array does not contain element.

Link copied to clipboard
inline fun lastOrNull(): Vector2I?

Returns the last element, or null if the array is empty.

inline fun lastOrNull(predicate: (Vector2I) -> Boolean): Vector2I?

Returns the last element matching the given predicate, or null if no such element was found.

Link copied to clipboard
inline fun none(): Boolean

Returns true if the array has no elements.

inline fun none(predicate: (Vector2I) -> Boolean): Boolean

Returns true if no elements match the given predicate.

Link copied to clipboard
operator fun plus(element: Vector2I): Vector2IArray

Returns an array containing all elements of the original array and then the given element.

operator fun plus(elements: Vector2IArray): Vector2IArray

Returns an array containing all elements of the original array and then all elements of the given elements array.

operator fun plus(elements: Collection<Vector2I>): Vector2IArray

Returns an array containing all elements of the original array and then all elements of the given elements collection.

Link copied to clipboard
inline fun random(): Vector2I

Returns a random element from this array.

inline fun random(random: Random): Vector2I

Returns a random element from this array using the specified source of randomness.

Link copied to clipboard
inline fun randomOrNull(): Vector2I?

Returns a random element from this array, or null if this array is empty.

inline fun randomOrNull(random: Random): Vector2I?

Returns a random element from this array using the specified source of randomness, or null if this array is empty.

Link copied to clipboard
fun reverse()

Reverses elements in the array in-place.

fun reverse(fromIndex: Int, toIndex: Int)

Reverses elements of the array in the specified range in-place.

Link copied to clipboard

Returns a list with elements in reversed order.

Link copied to clipboard

Returns an array with elements of this array in reversed order.

Link copied to clipboard
operator fun set(index: Int, value: Vector2I)

Sets the element at the given index to the given value. This method can be called using the index operator.

Link copied to clipboard
inline fun shuffle()

Randomly shuffles elements in this array in-place.

fun shuffle(random: Random)

Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.

Link copied to clipboard

Returns the single element.

inline fun single(predicate: (Vector2I) -> Boolean): Vector2I

Returns the single element matching the given predicate.

Link copied to clipboard
inline fun singleOrNull(): Vector2I?

Returns single element, or null if the array is empty or has more than one element.

inline fun singleOrNull(predicate: (Vector2I) -> Boolean): Vector2I?

Returns the single element matching the given predicate, or null if element was not found or more than one element was found.

Link copied to clipboard
fun slice(indices: Iterable<Int>): List<Vector2I>

Returns a list containing elements at specified indices.

fun slice(indices: IntRange): List<Vector2I>

Returns a list containing elements at indices in the specified indices range.

Link copied to clipboard

Returns an array containing elements of this array at specified indices.

Returns an array containing elements at indices in the specified indices range.

Link copied to clipboard
inline fun <R : Comparable<R>> sortedBy(crossinline selector: (Vector2I) -> R?): List<Vector2I>

Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.

Link copied to clipboard
inline fun <R : Comparable<R>> sortedByDescending(crossinline selector: (Vector2I) -> R?): List<Vector2I>

Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.

Link copied to clipboard
fun sortedWith(comparator: Comparator<in Vector2I>): List<Vector2I>

Returns a list of all elements sorted according to the specified comparator.

Link copied to clipboard
fun sum(): Vector2I

Returns the sum of all elements in the array.

Link copied to clipboard
@JvmName(name = "sumOfVector2F")
fun Iterable<Vector2F>.sum(): Vector2F
@JvmName(name = "sumOfVector2I")
fun Iterable<Vector2I>.sum(): Vector2I

Returns the sum of all elements in the collection.

Link copied to clipboard
inline fun sumOf(selector: (Vector2I) -> Vector2I): Vector2I
inline fun sumOf(selector: (Vector2I) -> Double): Double
inline fun sumOf(selector: (Vector2I) -> Int): Int
inline fun sumOf(selector: (Vector2I) -> Long): Long
inline fun sumOf(selector: (Vector2I) -> UInt): UInt
inline fun sumOf(selector: (Vector2I) -> ULong): ULong

Returns the sum of all values produced by selector function applied to each element in the array.

Link copied to clipboard
@JvmName(name = "sumOfVector2F")
inline fun <T> Iterable<T>.sumOf(selector: (T) -> Vector2F): Vector2F
@JvmName(name = "sumOfVector2I")
inline fun <T> Iterable<T>.sumOf(selector: (T) -> Vector2I): Vector2I

Returns the sum of all values produced by selector function applied to each element in the collection.

Link copied to clipboard
fun take(n: Int): List<Vector2I>

Returns a list containing first n elements.

Link copied to clipboard

Returns a list containing last n elements.

Link copied to clipboard
inline fun takeLastWhile(predicate: (Vector2I) -> Boolean): List<Vector2I>

Returns a list containing last elements satisfying the given predicate.

Link copied to clipboard
inline fun takeWhile(predicate: (Vector2I) -> Boolean): List<Vector2I>

Returns a list containing first elements satisfying the given predicate.

Link copied to clipboard
fun <C : MutableCollection<in Vector2I>> toCollection(destination: C): C

Appends all elements to the given destination collection.

Link copied to clipboard

Returns a typed object array containing all the elements of this primitive array.

Properties

Link copied to clipboard

Returns the range of valid indices for the array.

Link copied to clipboard

Returns the last valid index for the array.

Link copied to clipboard
open override val size: Int

Returns the number of elements in the array.