Array (original) (raw)
A generic array of objects. When targeting the JVM, instances of this class are represented as T[]
. Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Since Kotlin
1.0
A generic array of objects. When targeting the JVM, instances of this class are represented as T[]
. Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Since Kotlin
1.1
A generic array of objects. When targeting the JVM, instances of this class are represented as T[]
. Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Since Kotlin
1.0
A generic array of objects. When targeting the JVM, instances of this class are represented as T[]
. Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Since Kotlin
1.3
A generic array of objects. When targeting the JVM, instances of this class are represented as T[]
. Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Since Kotlin
1.8
A generic array of objects. When targeting the JVM, instances of this class are represented as T[]
. Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Since Kotlin
1.8
Constructors
expect constructor(size: Int, init: (Int) -> T)
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
actual constructor(size: Int, init: (Int) -> T)
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
constructor(size: Int, init: (Int) -> T)
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
actual constructor(size: Int, init: (Int) -> T)
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
actual constructor(size: Int, init: (Int) -> T)
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
actual constructor(size: Int, init: (Int) -> T)
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
Properties
Returns the range of valid indices for the array.
Returns the last valid index for the array.
Returns the number of elements in the array.
Returns the number of elements in the array.
Returns the number of elements in the array.
Returns the number of elements in the array.
Returns the number of elements in the array.
Returns the number of elements in the array.
Functions
Returns true
if all elements match the given predicate.
Returns true
if array has at least one element.
Returns true
if at least one element matches the given predicate.
Creates an Iterable instance that wraps the original array returning its elements when being iterated.
Returns a List that wraps the original array.
Returns a List that wraps the original array.
Returns a List that wraps the original array.
Returns a List that wraps the original array.
Returns a List that wraps the original array.
Returns a List that wraps the original array.
Creates a Sequence instance that wraps the original array returning its elements when being iterated.
Returns a Map containing key-value pairs provided by transform function applied to elements of the given array.
Returns a Map containing the elements from the given array indexed by the key returned from keySelector function applied to each element.
Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given array.
Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function applied to each element of the given array and value is the element itself.
Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function and and value is provided by the valueTransform function applied to elements of the given array.
Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given array.
Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.
Populates and returns the destination mutable map with key-value pairs for each element of the given array, where key is the element itself and value is provided by the valueSelector function applied to that key.
Returns an average value of elements in the array.
Searches the array or the range of the array for the provided element using the binary search algorithm. The array is expected to be sorted, otherwise the result is undefined.
Searches the array or the range of the array for the provided element using the binary search algorithm. The array is expected to be sorted according to the specified comparator, otherwise the result is undefined.
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.
Returns true
if element is found in the array.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Checks if the two specified arrays are deeply equal to one another.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a hash code based on the contents of this array as if it is List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Returns a string representation of the contents of this array as if it is a List. Nested arrays are treated as lists too.
Checks if the two specified arrays are structurally equal to one another.
Checks if the two specified arrays are structurally equal to one another.
Checks if the two specified arrays are structurally equal to one another.
Checks if the two specified arrays are structurally equal to one another.
Checks if the two specified arrays are structurally equal to one another.
Checks if the two specified arrays are structurally equal to one another.
Checks if the two specified arrays are structurally equal to one another.
Returns a hash code based on the contents of this array as if it is List.
Returns a hash code based on the contents of this array as if it is List.
Returns a hash code based on the contents of this array as if it is List.
Returns a hash code based on the contents of this array as if it is List.
Returns a hash code based on the contents of this array as if it is List.
Returns a hash code based on the contents of this array as if it is List.
Returns a hash code based on the contents of this array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Copies this array or its subrange into the destination array and returns that array.
actual inline fun <T> Array<out T>.copyInto(destination: Array<T>, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): Array<T>
Copies this array or its subrange into the destination array and returns that array.
Copies this array or its subrange into the destination array and returns that array.
Copies this array or its subrange into the destination array and returns that array.
Copies this array or its subrange into the destination array and returns that 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 null
values if necessary.
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 null
values if necessary.
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 null
values if necessary.
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 null
values if necessary.
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 null
values if necessary.
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 null
values if necessary.
Returns a new array which is a copy of the specified range of the original array.
Returns a new array which is a copy of the specified range of the original array.
Returns a new array which is a copy of the specified range of the original array.
Returns a new array which is a copy of the specified range of the original array.
Returns a new array which is a copy of the specified range of the original array.
Returns a new array which is a copy of the specified range of the original array.
Returns the number of elements in this array.
Returns the number of elements matching the given predicate.
Returns a list containing only distinct elements from the given array.
Returns a list containing only elements from the given array having distinct keys returned by the given selector function.
Returns a list containing all elements except first n elements.
Returns a list containing all elements except last n elements.
Returns a list containing all elements except last elements that satisfy the given predicate.
Returns a list containing all elements except first elements that satisfy the given predicate.
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 an element at the given index or null
if the index is out of bounds of this array.
expect fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size)
Fills this array or its subrange with the specified element value.
actual fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size)
Fills this array or its subrange with the specified element value.
actual fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size)
Fills this array or its subrange with the specified element value.
actual fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size)
Fills this array or its subrange with the specified element value.
actual fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size)
Fills this array or its subrange with the specified element value.
actual fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size)
Fills this array or its subrange with the specified element value.
Returns a list containing only elements matching the given predicate.
Returns a list containing only elements matching the given predicate.
Returns a list containing all elements that are instances of specified type parameter R.
Returns a list containing all elements that are instances of specified class.
Appends all elements that are instances of specified type parameter R to the given destination.
Appends all elements that are instances of specified class to the given destination.
Returns a list containing all elements not matching the given predicate.
Returns a list containing all elements that are not null
.
Appends all elements that are not null
to the given destination.
Returns the first element matching the given predicate, or null
if no such element was found.
Returns the last element matching the given predicate, or null
if no such element was found.
Returns the first element.
Returns the first element matching the given predicate.
Returns the first non-null value produced by transform function being applied to elements of this array in iteration order, or throws NoSuchElementException if no non-null value was produced.
Returns the first non-null value produced by transform function being applied to elements of this array in iteration order, or null
if no non-null value was produced.
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.
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
Returns a single list of all elements yielded from results of transform function being invoked on each element and its index in the original array.
Appends all elements yielded from results of transform function being invoked on each element and its index in the original array, to the given destination.
Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.
Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.
Returns a single list of all elements from all arrays in the given array.
inline fun <T, R> Array<out T>.fold(initial: R, operation: (acc: R, T) -> R): R
Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.
Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element with its index in the original array.
Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.
Accumulates value starting with initial value and applying operation from right to left to each element with its index in the original array and current accumulator value.
Performs the given action on each element.
Performs the given action on each element, providing sequential index with the element.
expect operator fun get(index: Int): T
Returns the array element at the given index.
actual operator fun get(index: Int): T
Returns the array element at the given index.
operator fun get(index: Int): T
Returns the array element at the given index.
actual operator external fun get(index: Int): T
Returns the array element at the given index.
actual operator fun get(index: Int): T
Returns the array element at the given index.
actual operator fun get(index: Int): T
Returns the array element at the given index.
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 an element at the given index or null
if the index is out of bounds of this array.
Groups elements of the original array by the key returned by the given keySelector function applied to each element and returns a map where each group key is associated with a list of corresponding elements.
Groups values returned by the valueTransform function applied to each element of the original array by the key returned by the given keySelector function applied to the element and returns a map where each group key is associated with a list of corresponding values.
Groups elements of the original array by the key returned by the given keySelector function applied to each element and puts to the destination map each group key associated with a list of corresponding elements.
Groups values returned by the valueTransform function applied to each element of the original array by the key returned by the given keySelector function applied to the element and puts to the destination map each group key associated with a list of corresponding values.
Creates a Grouping source from an array to be used later with one of group-and-fold operations using the specified keySelector function to extract a key from each element.
Returns first index of element, or -1 if the array does not contain 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 a set containing all elements that are contained by both this array and the specified collection.
Checks if array can contain element of type T.
Returns true
if the array is empty.
Returns true
if the array is not empty.
Returns true
if this nullable array is either null or empty.
Creates an Iterator for iterating over the elements of the array.
Creates an Iterator for iterating over the elements of the array.
Creates an Iterator for iterating over the elements of the array.
Creates an Iterator for iterating over the elements of the array.
Creates an Iterator for iterating over the elements of the array.
Creates an Iterator for iterating over the elements of the array.
Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.
Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.
Returns the last element.
Returns the last element matching the given predicate.
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 a list containing the results of applying the given transform function to each element in the original array.
Returns a list containing the results of applying the given transform function to each element and its index in the original array.
Returns a list containing only the non-null results of applying the given transform function to each element and its index in the original array.
Applies the given transform function to each element and its index in the original array and appends only the non-null results to the given destination.
Applies the given transform function to each element and its index in the original array and appends the results to the given destination.
Returns a list containing only the non-null results of applying the given transform function to each element in the original array.
Applies the given transform function to each element in the original array and appends only the non-null results to the given destination.
Applies the given transform function to each element of the original array and appends the results to the given destination.
Returns the largest element.
Returns the first element yielding the largest value of the given selector function.
Returns the first element yielding the largest value of the given selector function or null
if there are no elements.
Returns the largest value among all values produced by selector function applied to each element in the array.
Returns the largest value among all values produced by selector function applied to each element in the array or null
if the array is empty.
Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array.
Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array or null
if the array is empty.
Returns the largest element or null
if the array is empty.
Returns the first element having the largest value according to the provided comparator.
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
Returns the smallest element.
Returns the first element yielding the smallest value of the given selector function.
Returns the first element yielding the smallest value of the given selector function or null
if there are no elements.
Returns the smallest value among all values produced by selector function applied to each element in the array.
Returns the smallest value among all values produced by selector function applied to each element in the array or null
if the array is empty.
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array or null
if the array is empty.
Returns the smallest element or null
if the array is empty.
Returns the first element having the smallest value according to the provided comparator.
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
Returns true
if the array has no elements.
Returns true
if no elements match the given predicate.
Performs the given action on each element and returns the array itself afterwards.
Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.
Returns the array if it's not null
, or an empty array otherwise.
Returns the array if it's not null
, or an empty array otherwise.
Returns the array if it's not null
, or an empty array otherwise.
Returns the array if it's not null
, or an empty array otherwise.
Returns the array if it's not null
, or an empty array otherwise.
Returns the array if it's not null
, or an empty array otherwise.
Splits the original array into a pair of lists, where first list contains elements for which predicate yielded true
, while second list contains elements for which predicate yielded false
.
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 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 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 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 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 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 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 the given element.
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 the given element.
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 the given element.
Returns a random element from this array.
Returns a random element from this array using the specified source of randomness.
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.
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original array.
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original array.
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
Accumulates value starting with the last element and applying operation from right to left to each element with its index in the original array and current accumulator value.
Accumulates value starting with the last element and applying operation from right to left to each element with its index in the original array and current accumulator value.
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
Returns an original collection containing all the non-null
elements, throwing an IllegalArgumentException if there are any null
elements.
Reverses elements in the array in-place.
Reverses elements of the array in the specified range in-place.
Returns a list with elements in reversed order.
Returns an array with elements of this array in reversed order.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with initial value.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with initial value.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this array.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with the first element of this array.
inline fun <T, R> Array<out T>.scan(initial: R, operation: (acc: R, T) -> R): List<R>
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with initial value.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with initial value.
expect operator fun set(index: Int, value: T)
Sets the array element at the given index to the given value.
actual operator fun set(index: Int, value: T)
Sets the array element at the given index to the given value.
operator fun set(index: Int, value: T)
Sets the array element at the given index to the given value.
actual operator external fun set(index: Int, value: T)
Sets the array element at the given index to the given value.
actual operator fun set(index: Int, value: T)
Sets the array element at the given index to the given value.
actual operator fun set(index: Int, value: T)
Sets the array element at the given index to the given value.
Randomly shuffles elements in this array in-place.
Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.
Returns the single element, or throws an exception if the array is empty or has more than one element.
Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.
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 containing elements at specified indices.
Returns a list containing elements at indices in the specified indices range.
Returns an array containing elements of this array at specified indices.
Returns an array containing elements at indices in the specified indices range.
Sorts the array in-place according to the natural order of its elements.
Sorts a range in the array in-place.
Sorts the array in-place according to the natural order of its elements.
Sorts the array in-place according to the order specified by the given comparison function.
Sorts a range in the array in-place.
Sorts the array in-place according to the natural order of its elements.
Sorts a range in the array in-place.
Sorts a range in the array in-place.
Sorts the array in-place according to the natural order of its elements.
Sorts a range in the array in-place.
Sorts the array in-place according to the natural order of its elements.
Sorts a range in the array in-place.
Sorts the array in-place according to the natural order of its elements.
Sorts a range in the array in-place.
Sorts elements in the array in-place according to natural sort order of the value returned by specified selector function.
Sorts elements in the array in-place descending according to natural sort order of the value returned by specified selector function.
Sorts elements in the array in-place descending according to their natural sort order.
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
Returns a list of all elements sorted according to their natural sort order.
Returns an array with all elements of this array sorted according to their natural sort order.
Returns an array with all elements of this array sorted descending according to their natural sort order.
Returns an array with all elements of this array sorted according the specified comparator.
Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.
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 descending according to their natural sort order.
Returns a list of all elements sorted according to the specified comparator.
Sorts the array in-place according to the order specified by the given comparator.
Sorts a range in the array in-place with the given comparator.
Sorts the array in-place according to the order specified by the given comparator.
Sorts a range in the array in-place with the given comparator.
Sorts the array in-place according to the order specified by the given comparator.
Sorts a range in the array in-place with the given comparator.
Sorts the array in-place according to the order specified by the given comparator.
Sorts a range in the array in-place with the given comparator.
Sorts the array in-place according to the order specified by the given comparator.
Sorts a range in the array in-place with the given comparator.
Sorts the array in-place according to the order specified by the given comparator.
Sorts a range in the array in-place with the given comparator.
Returns a set containing all elements that are contained by this array and not contained by the specified collection.
Returns the sum of all elements in the array.
Returns the sum of all elements in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns a list containing first n elements.
Returns a list containing last n elements.
Returns a list containing last elements satisfying the given predicate.
Returns a list containing first elements satisfying the given predicate.
Returns an array of Boolean containing all of the elements of this generic array.
Returns an array of Byte containing all of the elements of this generic array.
Returns an array of Char containing all of the elements of this generic array.
Appends all elements to the given destination collection.
Convert this array of Kotlin strings to C array of C strings, allocating memory for the array and C strings with given AutofreeScope.
Returns an array of Double containing all of the elements of this generic array.
Returns an array of Float containing all of the elements of this generic array.
Returns a new HashSet of all elements.
Returns an array of Int containing all of the elements of this generic array.
Returns a new JsArray containing all the elements of this Array.
Returns a List containing all elements.
Returns an array of Long containing all of the elements of this generic array.
Returns a new map containing all key-value pairs from the given array of pairs.
Populates and returns the destination mutable map with key-value pairs from the given array of pairs.
Returns a new MutableList filled with all elements of this array.
Returns a new MutableSet containing all distinct elements from the given array.
Returns a Set of all elements.
Returns an array of Short containing all of the elements of this generic array.
Returns an array of UByte containing all of the elements of this generic array.
Returns an array of UInt containing all of the elements of this generic array.
Returns an array of ULong containing all of the elements of this generic array.
Returns an array of UShort containing all of the elements of this generic array.
Returns a set containing all distinct elements from both collections.
Returns a pair of lists, where first list is built from the first values of each pair from this array, second list is built from the second values of each pair from this array.
Returns a lazy Iterable that wraps each element of the original array into an IndexedValue containing the index of that element and the element itself.
Returns a list of pairs built from the elements of this
array and the other array with the same index. The returned list has length of the shortest collection.
Returns a list of pairs built from the elements of this
collection and other array with the same index. The returned list has length of the shortest collection.
Returns a list of values built from the elements of this
array and the other array with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest collection.
Returns a list of values built from the elements of this
array and the other collection with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest collection.
Thanks for your feedback!