ShortArray

class ShortArray(size: Int)(source)

An array of shorts. When targeting the JVM, instances of this class are represented as short[].

Since Kotlin

1.0

Throws

if the specified size is negative.

class ShortArray(size: Int)(source)

An array of shorts. When targeting the JVM, instances of this class are represented as short[].

Since Kotlin

1.1

An array of shorts.

Since Kotlin

1.3
class ShortArray(size: Int)(source)

An array of shorts.

Since Kotlin

1.8

Throws

if the specified size is negative.

class ShortArray(size: Int)(source)

An array of shorts.

Since Kotlin

1.8

Throws

if the specified size is negative.

Constructors

Link copied to clipboard
constructor(size: Int, init: (Int) -> Short)

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

constructor(size: Int)

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

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

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

constructor(size: Int)

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

constructor(size: Int)

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

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

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

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

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

constructor(size: Int)

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

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

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

constructor(size: Int)

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

Properties

Link copied to clipboard

Returns the range of valid indices for the array.

Since Kotlin 1.0
Link copied to clipboard

Returns the last valid index for the array.

Since Kotlin 1.0
Link copied to clipboard
val size: Int

Returns the number of elements in the array.

Since Kotlin 1.0
val size: Int

Returns the number of elements in the array.

Since Kotlin 1.1
val size: Int

Returns the number of elements in the array.

Since Kotlin 1.3
val size: Int

Returns the number of elements in the array.

Since Kotlin 1.8
val size: Int

Returns the number of elements in the array.

Since Kotlin 1.8

Functions

Link copied to clipboard
inline fun ShortArray.all(predicate: (Short) -> Boolean): Boolean

Returns true if all elements match the given predicate.

Since Kotlin 1.0
Link copied to clipboard

Returns true if array has at least one element.

Since Kotlin 1.0
inline fun ShortArray.any(predicate: (Short) -> Boolean): Boolean

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

Since Kotlin 1.0
Link copied to clipboard

Creates an Iterable instance that wraps the original array returning its elements when being iterated.

Since Kotlin 1.0
Link copied to clipboard
expect fun ShortArray.asList(): List<Short>

Returns a List that wraps the original array.

Since Kotlin 1.0
actual inline fun ShortArray.asList(): List<Short>

Returns a List that wraps the original array.

Since Kotlin 1.1
actual fun ShortArray.asList(): List<Short>

Returns a List that wraps the original array.

Since Kotlin 1.0
actual fun ShortArray.asList(): List<Short>

Returns a List that wraps the original array.

Since Kotlin 1.3
actual fun ShortArray.asList(): List<Short>

Returns a List that wraps the original array.

Since Kotlin 1.8
actual fun ShortArray.asList(): List<Short>

Returns a List that wraps the original array.

Since Kotlin 1.8
Link copied to clipboard

Creates a Sequence instance that wraps the original array returning its elements when being iterated.

Since Kotlin 1.0
Link copied to clipboard
inline fun <K, V> ShortArray.associate(transform: (Short) -> Pair<K, V>): Map<K, V>

Returns a Map containing key-value pairs provided by transform function applied to elements of the given array.

Since Kotlin 1.0
Link copied to clipboard
inline fun <K> ShortArray.associateBy(keySelector: (Short) -> K): Map<K, Short>

Returns a Map containing the elements from the given array indexed by the key returned from keySelector function applied to each element.

Since Kotlin 1.0
inline fun <K, V> ShortArray.associateBy(keySelector: (Short) -> K, valueTransform: (Short) -> V): Map<K, V>

Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given array.

Since Kotlin 1.0
Link copied to clipboard
inline fun <K, M : MutableMap<in K, in Short>> ShortArray.associateByTo(destination: M, keySelector: (Short) -> K): M

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.

Since Kotlin 1.0
inline fun <K, V, M : MutableMap<in K, in V>> ShortArray.associateByTo(destination: M, keySelector: (Short) -> K, valueTransform: (Short) -> V): M

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun <K, V, M : MutableMap<in K, in V>> ShortArray.associateTo(destination: M, transform: (Short) -> Pair<K, V>): M

Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given array.

Since Kotlin 1.0
Link copied to clipboard
inline fun <V> ShortArray.associateWith(valueSelector: (Short) -> V): Map<Short, V>

Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.

Since Kotlin 1.4
Link copied to clipboard
inline fun <V, M : MutableMap<in Short, in V>> ShortArray.associateWithTo(destination: M, valueSelector: (Short) -> V): M

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.

Since Kotlin 1.4
Link copied to clipboard

Returns an array of type UShortArray, which is a view of this array where each element is an unsigned reinterpretation of the corresponding element of this array.

Since Kotlin 1.3
Link copied to clipboard

Returns an average value of elements in the array.

Since Kotlin 1.0
Link copied to clipboard
fun ShortArray.binarySearch(element: Short, fromIndex: Int = 0, toIndex: Int = size): Int

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.

Since Kotlin 1.0
Link copied to clipboard
inline operator fun ShortArray.component1(): Short

Returns 1st element from the array.

Since Kotlin 1.0
Link copied to clipboard
inline operator fun ShortArray.component2(): Short

Returns 2nd element from the array.

Since Kotlin 1.0
Link copied to clipboard
inline operator fun ShortArray.component3(): Short

Returns 3rd element from the array.

Since Kotlin 1.0
Link copied to clipboard
inline operator fun ShortArray.component4(): Short

Returns 4th element from the array.

Since Kotlin 1.0
Link copied to clipboard
inline operator fun ShortArray.component5(): Short

Returns 5th element from the array.

Since Kotlin 1.0
Link copied to clipboard
operator fun ShortArray.contains(element: Short): Boolean

Returns true if element is found in the array.

Since Kotlin 1.0
Link copied to clipboard
expect infix fun ShortArray?.contentEquals(other: ShortArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.4
actual infix fun ShortArray?.contentEquals(other: ShortArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.4
actual infix inline fun ShortArray?.contentEquals(other: ShortArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.4

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.3
actual infix fun ShortArray?.contentEquals(other: ShortArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.4
actual infix fun ShortArray?.contentEquals(other: ShortArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.8
actual infix fun ShortArray?.contentEquals(other: ShortArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Since Kotlin 1.8
Link copied to clipboard

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.4

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.4
actual inline fun ShortArray?.contentHashCode(): Int

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.4

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.3

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.4

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.8

Returns a hash code based on the contents of this array as if it is List.

Since Kotlin 1.8
Link copied to clipboard

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.4

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.4
actual inline fun ShortArray?.contentToString(): String

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.4

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.3

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.4

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.8

Returns a string representation of the contents of the specified array as if it is List.

Since Kotlin 1.8
Link copied to clipboard
expect fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray

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

Since Kotlin 1.3
actual inline fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray

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

Since Kotlin 1.3
actual fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray

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

Since Kotlin 1.3
actual fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray

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

Since Kotlin 1.3
actual fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray

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

Since Kotlin 1.8
actual fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray

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

Since Kotlin 1.8
Link copied to clipboard

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

Since Kotlin 1.0
expect fun ShortArray.copyOf(newSize: Int): ShortArray

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

Since Kotlin 1.0
actual inline fun ShortArray.copyOf(): ShortArray

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

Since Kotlin 1.1
actual fun ShortArray.copyOf(newSize: Int): ShortArray

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

Since Kotlin 1.1
actual inline fun ShortArray.copyOf(): ShortArray

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

Since Kotlin 1.0
actual inline fun ShortArray.copyOf(newSize: Int): ShortArray

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

Since Kotlin 1.0

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

Since Kotlin 1.3
actual fun ShortArray.copyOf(newSize: Int): ShortArray

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

Since Kotlin 1.3

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

Since Kotlin 1.8
actual fun ShortArray.copyOf(newSize: Int): ShortArray

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

Since Kotlin 1.8

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

Since Kotlin 1.8
actual fun ShortArray.copyOf(newSize: Int): ShortArray

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

Since Kotlin 1.8
Link copied to clipboard
expect fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray

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

Since Kotlin 1.0
actual fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray

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

Since Kotlin 1.1
@JvmName(name = "copyOfRangeInline")
actual inline fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray

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

Since Kotlin 1.0
actual fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray

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

Since Kotlin 1.3
actual fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray

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

Since Kotlin 1.8
actual fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray

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

Since Kotlin 1.8
Link copied to clipboard
inline fun ShortArray.count(): Int

Returns the number of elements in this array.

Since Kotlin 1.0
inline fun ShortArray.count(predicate: (Short) -> Boolean): Int

Returns the number of elements matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
inline fun <K> ShortArray.distinctBy(selector: (Short) -> K): List<Short>

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

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing all elements except first n elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing all elements except last n elements.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.dropLastWhile(predicate: (Short) -> Boolean): List<Short>

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

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.dropWhile(predicate: (Short) -> Boolean): List<Short>

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

Since Kotlin 1.0
Link copied to clipboard
expect fun ShortArray.elementAt(index: Int): Short

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

Since Kotlin 1.0
actual fun ShortArray.elementAt(index: Int): Short

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

Since Kotlin 1.1
actual inline fun ShortArray.elementAt(index: Int): Short

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

Since Kotlin 1.0
actual inline fun ShortArray.elementAt(index: Int): Short

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

Since Kotlin 1.3
actual inline fun ShortArray.elementAt(index: Int): Short

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

Since Kotlin 1.8
actual inline fun ShortArray.elementAt(index: Int): Short

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

Since Kotlin 1.8
Link copied to clipboard
inline fun ShortArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Short): Short

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.elementAtOrNull(index: Int): Short?

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

Since Kotlin 1.0
Link copied to clipboard
expect fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size)

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

Since Kotlin 1.3
actual fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size)

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

Since Kotlin 1.3
actual fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size)

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

Since Kotlin 1.0
actual fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size)

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

Since Kotlin 1.3
actual fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size)

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

Since Kotlin 1.8
actual fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size)

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

Since Kotlin 1.8
Link copied to clipboard
inline fun ShortArray.filter(predicate: (Short) -> Boolean): List<Short>

Returns a list containing only elements matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.filterIndexed(predicate: (index: Int, Short) -> Boolean): List<Short>

Returns a list containing only elements matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard
inline fun <C : MutableCollection<in Short>> ShortArray.filterIndexedTo(destination: C, predicate: (index: Int, Short) -> Boolean): C

Appends all elements matching the given predicate to the given destination.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.filterNot(predicate: (Short) -> Boolean): List<Short>

Returns a list containing all elements not matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard
inline fun <C : MutableCollection<in Short>> ShortArray.filterNotTo(destination: C, predicate: (Short) -> Boolean): C

Appends all elements not matching the given predicate to the given destination.

Since Kotlin 1.0
Link copied to clipboard
inline fun <C : MutableCollection<in Short>> ShortArray.filterTo(destination: C, predicate: (Short) -> Boolean): C

Appends all elements matching the given predicate to the given destination.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.find(predicate: (Short) -> Boolean): Short?

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

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.findLast(predicate: (Short) -> Boolean): Short?

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

Since Kotlin 1.0
Link copied to clipboard

Returns the first element.

Since Kotlin 1.0
inline fun ShortArray.first(predicate: (Short) -> Boolean): Short

Returns the first element matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
inline fun ShortArray.firstOrNull(predicate: (Short) -> Boolean): Short?

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

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.flatMap(transform: (Short) -> Iterable<R>): List<R>

Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.

Since Kotlin 1.0
Link copied to clipboard
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> ShortArray.flatMapIndexed(transform: (index: Int, Short) -> Iterable<R>): List<R>

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.

Since Kotlin 1.4
Link copied to clipboard
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> ShortArray.flatMapIndexedTo(destination: C, transform: (index: Int, Short) -> Iterable<R>): C

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.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> ShortArray.flatMapTo(destination: C, transform: (Short) -> Iterable<R>): C

Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.fold(initial: R, operation: (acc: R, Short) -> R): R

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Short) -> R): R

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.foldRight(initial: R, operation: (Short, acc: R) -> R): R

Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.foldRightIndexed(initial: R, operation: (index: Int, Short, acc: R) -> R): R

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.forEach(action: (Short) -> Unit)

Performs the given action on each element.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.forEachIndexed(action: (index: Int, Short) -> Unit)

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

Since Kotlin 1.0
Link copied to clipboard
operator fun get(index: Int): Short

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

Since Kotlin 1.0
operator fun get(index: Int): Short

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

Since Kotlin 1.1
operator external fun get(index: Int): Short

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

Since Kotlin 1.3
operator fun get(index: Int): Short

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

Since Kotlin 1.8
operator fun get(index: Int): Short

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

Since Kotlin 1.8
Link copied to clipboard
inline fun ShortArray.getOrElse(index: Int, defaultValue: (Int) -> Short): Short

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.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
inline fun <K> ShortArray.groupBy(keySelector: (Short) -> K): Map<K, List<Short>>

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.

Since Kotlin 1.0
inline fun <K, V> ShortArray.groupBy(keySelector: (Short) -> K, valueTransform: (Short) -> V): Map<K, List<V>>

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun <K, M : MutableMap<in K, MutableList<Short>>> ShortArray.groupByTo(destination: M, keySelector: (Short) -> K): M

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.

Since Kotlin 1.0
inline fun <K, V, M : MutableMap<in K, MutableList<V>>> ShortArray.groupByTo(destination: M, keySelector: (Short) -> K, valueTransform: (Short) -> V): M

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.

Since Kotlin 1.0
Link copied to clipboard
fun ShortArray.indexOf(element: Short): Int

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

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.indexOfFirst(predicate: (Short) -> Boolean): Int

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

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.indexOfLast(predicate: (Short) -> Boolean): Int

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

Since Kotlin 1.0
Link copied to clipboard

Returns a set containing all elements that are contained by both this array and the specified collection.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.isEmpty(): Boolean

Returns true if the array is empty.

Since Kotlin 1.0
Link copied to clipboard

Returns true if the array is not empty.

Since Kotlin 1.0
Link copied to clipboard
operator fun iterator(): ShortIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.0
operator fun iterator(): ShortIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.1
operator fun iterator(): ShortIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.3
operator fun iterator(): ShortIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.8
operator fun iterator(): ShortIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.8
Link copied to clipboard
fun <A : Appendable> ShortArray.joinTo(buffer: A, separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: (Short) -> CharSequence? = null): A

Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.

Since Kotlin 1.0
Link copied to clipboard
fun ShortArray.joinToString(separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: (Short) -> CharSequence? = null): String

Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.

Since Kotlin 1.0
Link copied to clipboard

Returns the last element.

Since Kotlin 1.0
inline fun ShortArray.last(predicate: (Short) -> Boolean): Short

Returns the last element matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
inline fun ShortArray.lastOrNull(predicate: (Short) -> Boolean): Short?

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

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.map(transform: (Short) -> R): List<R>

Returns a list containing the results of applying the given transform function to each element in the original array.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.mapIndexed(transform: (index: Int, Short) -> R): List<R>

Returns a list containing the results of applying the given transform function to each element and its index in the original array.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> ShortArray.mapIndexedTo(destination: C, transform: (index: Int, Short) -> R): C

Applies the given transform function to each element and its index in the original array and appends the results to the given destination.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> ShortArray.mapTo(destination: C, transform: (Short) -> R): C

Applies the given transform function to each element of the original array and appends the results to the given destination.

Since Kotlin 1.0
Link copied to clipboard
@JvmName(name = "maxOrThrow")
fun ShortArray.max(): Short

Returns the largest element.

Since Kotlin 1.7
Since Kotlin 1.0
Link copied to clipboard
@JvmName(name = "maxByOrThrow")
inline fun <R : Comparable<R>> ShortArray.maxBy(selector: (Short) -> R): Short

Returns the first element yielding the largest value of the given function.

Since Kotlin 1.7
inline fun <R : Comparable<R>> ShortArray.maxBy(selector: (Short) -> R): Short?
Since Kotlin 1.0
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.maxByOrNull(selector: (Short) -> R): Short?

Returns the first element yielding the largest value of the given function or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.maxOf(selector: (Short) -> R): R
inline fun ShortArray.maxOf(selector: (Short) -> Double): Double
inline fun ShortArray.maxOf(selector: (Short) -> Float): Float

Returns the largest value among all values produced by selector function applied to each element in the array.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.maxOfOrNull(selector: (Short) -> R): R?
inline fun ShortArray.maxOfOrNull(selector: (Short) -> Double): Double?
inline fun ShortArray.maxOfOrNull(selector: (Short) -> Float): Float?

Returns the largest value among all values produced by selector function applied to each element in the array or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.maxOfWith(comparator: Comparator<in R>, selector: (Short) -> R): R

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Short) -> R): R?

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 there are no elements.

Since Kotlin 1.4
Link copied to clipboard

Returns the largest element or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
@JvmName(name = "maxWithOrThrow")
fun ShortArray.maxWith(comparator: Comparator<in Short>): Short

Returns the first element having the largest value according to the provided comparator.

Since Kotlin 1.7
fun ShortArray.maxWith(comparator: Comparator<in Short>): Short?
Since Kotlin 1.0
Link copied to clipboard

Returns the first element having the largest value according to the provided comparator or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
@JvmName(name = "minOrThrow")
fun ShortArray.min(): Short

Returns the smallest element.

Since Kotlin 1.7
Since Kotlin 1.0
Link copied to clipboard
@JvmName(name = "minByOrThrow")
inline fun <R : Comparable<R>> ShortArray.minBy(selector: (Short) -> R): Short

Returns the first element yielding the smallest value of the given function.

Since Kotlin 1.7
inline fun <R : Comparable<R>> ShortArray.minBy(selector: (Short) -> R): Short?
Since Kotlin 1.0
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.minByOrNull(selector: (Short) -> R): Short?

Returns the first element yielding the smallest value of the given function or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.minOf(selector: (Short) -> R): R
inline fun ShortArray.minOf(selector: (Short) -> Double): Double
inline fun ShortArray.minOf(selector: (Short) -> Float): Float

Returns the smallest value among all values produced by selector function applied to each element in the array.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.minOfOrNull(selector: (Short) -> R): R?
inline fun ShortArray.minOfOrNull(selector: (Short) -> Double): Double?
inline fun ShortArray.minOfOrNull(selector: (Short) -> Float): Float?

Returns the smallest value among all values produced by selector function applied to each element in the array or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.minOfWith(comparator: Comparator<in R>, selector: (Short) -> R): R

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Short) -> R): R?

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 there are no elements.

Since Kotlin 1.4
Link copied to clipboard

Returns the smallest element or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard
@JvmName(name = "minWithOrThrow")
fun ShortArray.minWith(comparator: Comparator<in Short>): Short

Returns the first element having the smallest value according to the provided comparator.

Since Kotlin 1.7
fun ShortArray.minWith(comparator: Comparator<in Short>): Short?
Since Kotlin 1.0
Link copied to clipboard

Returns the first element having the smallest value according to the provided comparator or null if there are no elements.

Since Kotlin 1.4
Link copied to clipboard

Returns true if the array has no elements.

Since Kotlin 1.0
inline fun ShortArray.none(predicate: (Short) -> Boolean): Boolean

Returns true if no elements match the given predicate.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.onEach(action: (Short) -> Unit): ShortArray

Performs the given action on each element and returns the array itself afterwards.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.onEachIndexed(action: (index: Int, Short) -> Unit): ShortArray

Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.partition(predicate: (Short) -> Boolean): Pair<List<Short>, List<Short>>

Splits the original array into pair of lists, where first list contains elements for which predicate yielded true, while second list contains elements for which predicate yielded false.

Since Kotlin 1.0
Link copied to clipboard
expect operator fun ShortArray.plus(element: Short): ShortArray

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

Since Kotlin 1.0
expect operator fun ShortArray.plus(elements: ShortArray): ShortArray

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

Since Kotlin 1.0
expect operator fun ShortArray.plus(elements: Collection<Short>): ShortArray

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

Since Kotlin 1.0
actual inline operator fun ShortArray.plus(element: Short): ShortArray

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

Since Kotlin 1.1
actual inline operator fun ShortArray.plus(elements: ShortArray): ShortArray

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

Since Kotlin 1.1
actual operator fun ShortArray.plus(elements: Collection<Short>): ShortArray

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

Since Kotlin 1.1
actual operator fun ShortArray.plus(element: Short): ShortArray

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

Since Kotlin 1.0
actual operator fun ShortArray.plus(elements: ShortArray): ShortArray

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

Since Kotlin 1.0
actual operator fun ShortArray.plus(elements: Collection<Short>): ShortArray

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

Since Kotlin 1.0
actual operator fun ShortArray.plus(element: Short): ShortArray

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

Since Kotlin 1.3
actual operator fun ShortArray.plus(elements: ShortArray): ShortArray

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

Since Kotlin 1.3
actual operator fun ShortArray.plus(elements: Collection<Short>): ShortArray

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

Since Kotlin 1.3
actual operator fun ShortArray.plus(element: Short): ShortArray

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

Since Kotlin 1.8
actual operator fun ShortArray.plus(elements: ShortArray): ShortArray

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

Since Kotlin 1.8
actual operator fun ShortArray.plus(elements: Collection<Short>): ShortArray

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

Since Kotlin 1.8
actual operator fun ShortArray.plus(element: Short): ShortArray

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

Since Kotlin 1.8
actual operator fun ShortArray.plus(elements: ShortArray): ShortArray

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

Since Kotlin 1.8
actual operator fun ShortArray.plus(elements: Collection<Short>): ShortArray

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

Since Kotlin 1.8
Link copied to clipboard
inline fun ShortArray.random(): Short

Returns a random element from this array.

Since Kotlin 1.3

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.4

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

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.reduce(operation: (acc: Short, Short) -> Short): Short

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.reduceIndexed(operation: (index: Int, acc: Short, Short) -> Short): Short

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.reduceIndexedOrNull(operation: (index: Int, acc: Short, Short) -> Short): Short?

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.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.reduceOrNull(operation: (acc: Short, Short) -> Short): Short?

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.reduceRight(operation: (Short, acc: Short) -> Short): Short

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.reduceRightIndexed(operation: (index: Int, Short, acc: Short) -> Short): Short

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.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.reduceRightIndexedOrNull(operation: (index: Int, Short, acc: Short) -> Short): Short?

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.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.reduceRightOrNull(operation: (Short, acc: Short) -> Short): Short?

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

Since Kotlin 1.4
Link copied to clipboard
Since Kotlin 1.3
Link copied to clipboard

Reverses elements in the array in-place.

Since Kotlin 1.0
fun ShortArray.reverse(fromIndex: Int, toIndex: Int)

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

Since Kotlin 1.4
Link copied to clipboard

Returns a list with elements in reversed order.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
inline fun <R> ShortArray.runningFold(initial: R, operation: (acc: R, Short) -> 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.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Short) -> R): List<R>

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.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.runningReduce(operation: (acc: Short, Short) -> Short): List<Short>

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.

Since Kotlin 1.4
Link copied to clipboard
inline fun ShortArray.runningReduceIndexed(operation: (index: Int, acc: Short, Short) -> Short): List<Short>

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.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.scan(initial: R, operation: (acc: R, Short) -> 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.

Since Kotlin 1.4
Link copied to clipboard
inline fun <R> ShortArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Short) -> R): List<R>

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.

Since Kotlin 1.4
Link copied to clipboard
operator fun set(index: Int, value: Short)

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

Since Kotlin 1.0
operator fun set(index: Int, value: Short)

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

Since Kotlin 1.1
operator external fun set(index: Int, value: Short)

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

Since Kotlin 1.3
operator fun set(index: Int, value: Short)

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

Since Kotlin 1.8
operator fun set(index: Int, value: Short)

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

Since Kotlin 1.8
Link copied to clipboard

Randomly shuffles elements in this array in-place.

Since Kotlin 1.4

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

Since Kotlin 1.4
Link copied to clipboard

Returns the single element, or throws an exception if the array is empty or has more than one element.

Since Kotlin 1.0
inline fun ShortArray.single(predicate: (Short) -> Boolean): Short

Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
inline fun ShortArray.singleOrNull(predicate: (Short) -> Boolean): Short?

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

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing elements at specified indices.

Since Kotlin 1.0

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0

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

Since Kotlin 1.0
Link copied to clipboard
expect fun ShortArray.sort()

Sorts the array in-place.

Since Kotlin 1.0
expect fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Since Kotlin 1.4
actual fun ShortArray.sort()

Sorts the array in-place.

Since Kotlin 1.1
inline fun ShortArray.sort(noinline comparison: (a: Short, b: Short) -> Int)

Sorts the array in-place according to the order specified by the given comparison function.

Since Kotlin 1.1
actual fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Since Kotlin 1.4
actual fun ShortArray.sort()

Sorts the array in-place.

Since Kotlin 1.0
actual fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Since Kotlin 1.0
actual fun ShortArray.sort()

Sorts the array in-place.

Since Kotlin 1.3
actual fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Since Kotlin 1.4
actual fun ShortArray.sort()

Sorts the array in-place.

Since Kotlin 1.8
actual fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Since Kotlin 1.8
actual fun ShortArray.sort()

Sorts the array in-place.

Since Kotlin 1.8
actual fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Since Kotlin 1.8
Link copied to clipboard

Sorts elements in the array in-place descending according to their natural sort order.

Since Kotlin 1.0
fun ShortArray.sortDescending(fromIndex: Int, toIndex: Int)

Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.

Since Kotlin 1.4
Link copied to clipboard

Returns a list of all elements sorted according to their natural sort order.

Since Kotlin 1.0
Link copied to clipboard

Returns an array with all elements of this array sorted according to their natural sort order.

Since Kotlin 1.0
Link copied to clipboard

Returns an array with all elements of this array sorted descending according to their natural sort order.

Since Kotlin 1.0
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.sortedBy(crossinline selector: (Short) -> R?): List<Short>

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

Since Kotlin 1.0
Link copied to clipboard
inline fun <R : Comparable<R>> ShortArray.sortedByDescending(crossinline selector: (Short) -> R?): List<Short>

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

Since Kotlin 1.0
Link copied to clipboard

Returns a list of all elements sorted descending according to their natural sort order.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
infix fun ShortArray.subtract(other: Iterable<Short>): Set<Short>

Returns a set containing all elements that are contained by this array and not contained by the specified collection.

Since Kotlin 1.0
Link copied to clipboard

Returns the sum of all elements in the array.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.sumBy(selector: (Short) -> Int): Int

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

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.sumByDouble(selector: (Short) -> Double): Double

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

Since Kotlin 1.0
Link copied to clipboard
@JvmName(name = "sumOfDouble")
inline fun ShortArray.sumOf(selector: (Short) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun ShortArray.sumOf(selector: (Short) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun ShortArray.sumOf(selector: (Short) -> Long): Long

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

Since Kotlin 1.4
@JvmName(name = "sumOfUInt")
inline fun ShortArray.sumOf(selector: (Short) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun ShortArray.sumOf(selector: (Short) -> ULong): ULong

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

Since Kotlin 1.5
@JvmName(name = "sumOfBigDecimal")
inline fun ShortArray.sumOf(selector: (Short) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun ShortArray.sumOf(selector: (Short) -> BigInteger): BigInteger

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

Since Kotlin 1.4
Link copied to clipboard

Returns a list containing first n elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing last n elements.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.takeLastWhile(predicate: (Short) -> Boolean): List<Short>

Returns a list containing last elements satisfying the given predicate.

Since Kotlin 1.0
Link copied to clipboard
inline fun ShortArray.takeWhile(predicate: (Short) -> Boolean): List<Short>

Returns a list containing first elements satisfying the given predicate.

Since Kotlin 1.0
Link copied to clipboard
fun <C : MutableCollection<in Short>> ShortArray.toCollection(destination: C): C

Appends all elements to the given destination collection.

Since Kotlin 1.0
Link copied to clipboard
Since Kotlin 1.3
Link copied to clipboard

Returns a new HashSet of all elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a List containing all elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a new MutableList filled with all elements of this array.

Since Kotlin 1.0
Link copied to clipboard

Returns a new MutableSet containing all distinct elements from the given array.

Since Kotlin 1.0
Link copied to clipboard

Returns a Set of all elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a new SortedSet of all elements.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0

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

Since Kotlin 1.1

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

Since Kotlin 1.0

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

Since Kotlin 1.3

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

Since Kotlin 1.8

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

Since Kotlin 1.8
Link copied to clipboard

Returns an array of type UShortArray, which is a copy of this array where each element is an unsigned reinterpretation of the corresponding element of this array.

Since Kotlin 1.3
Link copied to clipboard
infix fun ShortArray.union(other: Iterable<Short>): Set<Short>

Returns a set containing all distinct elements from both collections.

Since Kotlin 1.0
Link copied to clipboard

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.

Since Kotlin 1.0
Link copied to clipboard
infix fun <R> ShortArray.zip(other: Array<out R>): List<Pair<Short, R>>
infix fun ShortArray.zip(other: ShortArray): List<Pair<Short, Short>>

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.

Since Kotlin 1.0
infix fun <R> ShortArray.zip(other: Iterable<R>): List<Pair<Short, R>>

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.

Since Kotlin 1.0
inline fun <R, V> ShortArray.zip(other: Array<out R>, transform: (a: Short, b: R) -> V): List<V>

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.

Since Kotlin 1.0
inline fun <V> ShortArray.zip(other: ShortArray, transform: (a: Short, b: Short) -> V): List<V>

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 array.

Since Kotlin 1.0
inline fun <R, V> ShortArray.zip(other: Iterable<R>, transform: (a: Short, b: R) -> V): List<V>

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.

Since Kotlin 1.0