Array
Represents an array (specifically, a Java array when targeting the JVM platform). 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.1Represents an array (specifically, a Java array when targeting the JVM platform). 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.0Functions
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.
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 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.
Appends all elements matching the given predicate to the given destination.
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.
Appends all elements that are not null
to the given destination.
Appends all elements not matching the given predicate to the given destination.
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.
Returns true
if the array is not empty.
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.
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.
Applies the given transform function to each element in the original array and appends only the non-null results to the given destination.
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 original collection containing all the non-null
elements, throwing an IllegalArgumentException if there are any null
elements.
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.
Sorts the array in-place according to the order specified by the given comparison 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.
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 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 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.
Appends all elements to the given destination collection.
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 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 new SortedSet of all elements.
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.