ShortArray
For Common, JVM, JS
An array of shorts. When targeting the JVM, instances of this class are represented as short[]
.
For Native
An array of shorts.
Constructors
Properties
size
Returns the number of elements in the array.
val size: Int
Functions
get
Returns the array element at the given index. This method can be called using the index operator.
operator fun get(index: Int): Short
iterator
Creates an iterator over the elements of the array.
operator fun iterator(): ShortIterator
Extension Properties
indices
Returns the range of valid indices for the array.
val ShortArray.indices: IntRange
lastIndex
Returns the last valid index for the array.
val ShortArray.lastIndex: Int
Extension Functions
all
Returns true
if all elements match the given predicate.
fun ShortArray.all(predicate: (Short) -> Boolean): Boolean
any
Returns true
if array has at least one element.
fun ShortArray.any(): Boolean
Returns true
if at least one element matches the given predicate.
fun ShortArray.any(predicate: (Short) -> Boolean): Boolean
asIterable
Creates an Iterable instance that wraps the original array returning its elements when being iterated.
fun ShortArray.asIterable(): Iterable<Short>
asSequence
Creates a Sequence instance that wraps the original array returning its elements when being iterated.
fun ShortArray.asSequence(): Sequence<Short>
associate
Returns a Map containing key-value pairs provided by transform function applied to elements of the given array.
fun <K, V> ShortArray.associate(
transform: (Short) -> Pair<K, V>
): Map<K, V>
associateBy
Returns a Map containing the elements from the given array indexed by the key returned from keySelector function applied to each element.
fun <K> ShortArray.associateBy(
keySelector: (Short) -> K
): Map<K, Short>
Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given array.
fun <K, V> ShortArray.associateBy(
keySelector: (Short) -> K,
valueTransform: (Short) -> V
): Map<K, V>
associateByTo
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.
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 and and value is provided by the valueTransform function applied to elements of the given array.
fun <K, V, M : MutableMap<in K, in V>> ShortArray.associateByTo(
destination: M,
keySelector: (Short) -> K,
valueTransform: (Short) -> V
): M
associateTo
Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given array.
fun <K, V, M : MutableMap<in K, in V>> ShortArray.associateTo(
destination: M,
transform: (Short) -> Pair<K, V>
): M
associateWith
Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.
fun <V> ShortArray.associateWith(
valueSelector: (Short) -> V
): Map<Short, V>
associateWithTo
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.
fun <V, M : MutableMap<in Short, in V>> ShortArray.associateWithTo(
destination: M,
valueSelector: (Short) -> V
): M
asUShortArray
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.
fun ShortArray.asUShortArray(): UShortArray
average
Returns an average value of elements in the array.
fun ShortArray.average(): Double
binarySearch
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.
fun ShortArray.binarySearch(
element: Short,
fromIndex: Int = 0,
toIndex: Int = size
): Int
component1
Returns 1st element from the array.
operator fun ShortArray.component1(): Short
component2
Returns 2nd element from the array.
operator fun ShortArray.component2(): Short
component3
Returns 3rd element from the array.
operator fun ShortArray.component3(): Short
component4
Returns 4th element from the array.
operator fun ShortArray.component4(): Short
component5
Returns 5th element from the array.
operator fun ShortArray.component5(): Short
contains
Returns true
if element is found in the array.
operator fun ShortArray.contains(element: Short): Boolean
contentEquals
Checks if the two specified arrays are structurally equal to one another.
infix fun ShortArray.contentEquals(
other: ShortArray
): Boolean
contentHashCode
Returns a hash code based on the contents of this array as if it is List.
fun ShortArray.contentHashCode(): Int
contentToString
Returns a string representation of the contents of the specified array as if it is List.
fun ShortArray.contentToString(): String
count
Returns the number of elements in this array.
fun ShortArray.count(): Int
Returns the number of elements matching the given predicate.
fun ShortArray.count(predicate: (Short) -> Boolean): Int
distinct
Returns a list containing only distinct elements from the given array.
fun ShortArray.distinct(): List<Short>
distinctBy
Returns a list containing only elements from the given array having distinct keys returned by the given selector function.
fun <K> ShortArray.distinctBy(
selector: (Short) -> K
): List<Short>
drop
Returns a list containing all elements except first n elements.
fun ShortArray.drop(n: Int): List<Short>
dropLast
Returns a list containing all elements except last n elements.
fun ShortArray.dropLast(n: Int): List<Short>
dropLastWhile
Returns a list containing all elements except last elements that satisfy the given predicate.
fun ShortArray.dropLastWhile(
predicate: (Short) -> Boolean
): List<Short>
dropWhile
Returns a list containing all elements except first elements that satisfy the given predicate.
fun ShortArray.dropWhile(
predicate: (Short) -> Boolean
): List<Short>
elementAtOrElse
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.
fun ShortArray.elementAtOrElse(
index: Int,
defaultValue: (Int) -> Short
): Short
elementAtOrNull
Returns an element at the given index or null
if the index is out of bounds of this array.
fun ShortArray.elementAtOrNull(index: Int): Short?
filter
Returns a list containing only elements matching the given predicate.
fun ShortArray.filter(
predicate: (Short) -> Boolean
): List<Short>
filterIndexed
Returns a list containing only elements matching the given predicate.
fun ShortArray.filterIndexed(
predicate: (index: Int, Short) -> Boolean
): List<Short>
filterIndexedTo
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Short>> ShortArray.filterIndexedTo(
destination: C,
predicate: (index: Int, Short) -> Boolean
): C
filterNot
Returns a list containing all elements not matching the given predicate.
fun ShortArray.filterNot(
predicate: (Short) -> Boolean
): List<Short>
filterNotTo
Appends all elements not matching the given predicate to the given destination.
fun <C : MutableCollection<in Short>> ShortArray.filterNotTo(
destination: C,
predicate: (Short) -> Boolean
): C
filterTo
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Short>> ShortArray.filterTo(
destination: C,
predicate: (Short) -> Boolean
): C
find
Returns the first element matching the given predicate, or null
if no such element was found.
fun ShortArray.find(predicate: (Short) -> Boolean): Short?
findLast
Returns the last element matching the given predicate, or null
if no such element was found.
fun ShortArray.findLast(
predicate: (Short) -> Boolean
): Short?
first
Returns the first element.
fun ShortArray.first(): Short
Returns the first element matching the given predicate.
fun ShortArray.first(predicate: (Short) -> Boolean): Short
firstOrNull
Returns the first element, or null
if the array is empty.
fun ShortArray.firstOrNull(): Short?
Returns the first element matching the given predicate, or null
if element was not found.
fun ShortArray.firstOrNull(
predicate: (Short) -> Boolean
): Short?
flatMap
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
fun <R> ShortArray.flatMap(
transform: (Short) -> Iterable<R>
): List<R>
flatMapIndexed
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.
fun <R> ShortArray.flatMapIndexed(
transform: (index: Int, Short) -> Iterable<R>
): List<R>
flatMapIndexedTo
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.
fun <R, C : MutableCollection<in R>> ShortArray.flatMapIndexedTo(
destination: C,
transform: (index: Int, Short) -> Iterable<R>
): C
flatMapTo
Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.
fun <R, C : MutableCollection<in R>> ShortArray.flatMapTo(
destination: C,
transform: (Short) -> Iterable<R>
): C
fold
Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.
fun <R> ShortArray.fold(
initial: R,
operation: (acc: R, Short) -> R
): R
foldIndexed
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.
fun <R> ShortArray.foldIndexed(
initial: R,
operation: (index: Int, acc: R, Short) -> R
): R
foldRight
Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.
fun <R> ShortArray.foldRight(
initial: R,
operation: (Short, acc: R) -> R
): R
foldRightIndexed
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.
fun <R> ShortArray.foldRightIndexed(
initial: R,
operation: (index: Int, Short, acc: R) -> R
): R
forEach
Performs the given action on each element.
fun ShortArray.forEach(action: (Short) -> Unit)
forEachIndexed
Performs the given action on each element, providing sequential index with the element.
fun ShortArray.forEachIndexed(
action: (index: Int, Short) -> Unit)
getOrElse
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.
fun ShortArray.getOrElse(
index: Int,
defaultValue: (Int) -> Short
): Short
getOrNull
Returns an element at the given index or null
if the index is out of bounds of this array.
fun ShortArray.getOrNull(index: Int): Short?
groupBy
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.
fun <K> ShortArray.groupBy(
keySelector: (Short) -> K
): Map<K, List<Short>>
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.
fun <K, V> ShortArray.groupBy(
keySelector: (Short) -> K,
valueTransform: (Short) -> V
): Map<K, List<V>>
groupByTo
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.
fun <K, M : MutableMap<in K, MutableList<Short>>> ShortArray.groupByTo(
destination: M,
keySelector: (Short) -> K
): 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.
fun <K, V, M : MutableMap<in K, MutableList<V>>> ShortArray.groupByTo(
destination: M,
keySelector: (Short) -> K,
valueTransform: (Short) -> V
): M
indexOf
Returns first index of element, or -1 if the array does not contain element.
fun ShortArray.indexOf(element: Short): Int
indexOfFirst
Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.
fun ShortArray.indexOfFirst(
predicate: (Short) -> Boolean
): Int
indexOfLast
Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.
fun ShortArray.indexOfLast(
predicate: (Short) -> Boolean
): Int
intersect
Returns a set containing all elements that are contained by both this array and the specified collection.
infix fun ShortArray.intersect(
other: Iterable<Short>
): Set<Short>
isEmpty
Returns true
if the array is empty.
fun ShortArray.isEmpty(): Boolean
isNotEmpty
Returns true
if the array is not empty.
fun ShortArray.isNotEmpty(): Boolean
joinTo
Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun <A : Appendable> ShortArray.joinTo(
buffer: A,
separator: CharSequence = ", ",
prefix: CharSequence = "",
postfix: CharSequence = "",
limit: Int = -1,
truncated: CharSequence = "...",
transform: ((Short) -> CharSequence)? = null
): A
joinToString
Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun ShortArray.joinToString(
separator: CharSequence = ", ",
prefix: CharSequence = "",
postfix: CharSequence = "",
limit: Int = -1,
truncated: CharSequence = "...",
transform: ((Short) -> CharSequence)? = null
): String
last
Returns the last element.
fun ShortArray.last(): Short
Returns the last element matching the given predicate.
fun ShortArray.last(predicate: (Short) -> Boolean): Short
lastIndexOf
Returns last index of element, or -1 if the array does not contain element.
fun ShortArray.lastIndexOf(element: Short): Int
lastOrNull
Returns the last element, or null
if the array is empty.
fun ShortArray.lastOrNull(): Short?
Returns the last element matching the given predicate, or null
if no such element was found.
fun ShortArray.lastOrNull(
predicate: (Short) -> Boolean
): Short?
map
Returns a list containing the results of applying the given transform function to each element in the original array.
fun <R> ShortArray.map(transform: (Short) -> R): List<R>
mapIndexed
Returns a list containing the results of applying the given transform function to each element and its index in the original array.
fun <R> ShortArray.mapIndexed(
transform: (index: Int, Short) -> R
): List<R>
mapIndexedTo
Applies the given transform function to each element and its index in the original array and appends the results to the given destination.
fun <R, C : MutableCollection<in R>> ShortArray.mapIndexedTo(
destination: C,
transform: (index: Int, Short) -> R
): C
mapTo
Applies the given transform function to each element of the original array and appends the results to the given destination.
fun <R, C : MutableCollection<in R>> ShortArray.mapTo(
destination: C,
transform: (Short) -> R
): C
maxByOrNull
Returns the first element yielding the largest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> ShortArray.maxByOrNull(
selector: (Short) -> R
): Short?
maxOf
Returns the largest value among all values produced by selector function applied to each element in the array.
fun <R : Comparable<R>> any_array<R>.maxOf(
selector: (Short) -> R
): R
maxOfOrNull
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.
fun <R : Comparable<R>> any_array<R>.maxOfOrNull(
selector: (Short) -> R
): R?
maxOfWith
Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array.
fun <R> ShortArray.maxOfWith(
comparator: Comparator<in R>,
selector: (Short) -> R
): R
maxOfWithOrNull
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.
fun <R> ShortArray.maxOfWithOrNull(
comparator: Comparator<in R>,
selector: (Short) -> R
): R?
maxOrNull
Returns the largest element or null
if there are no elements.
fun ShortArray.maxOrNull(): Short?
maxWith
Returns the first element having the largest value according to the provided comparator.
fun ShortArray.maxWith(
comparator: Comparator<in Short>
): Short
fun ShortArray.maxWith(
comparator: Comparator<in Short>
): Short?
maxWithOrNull
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
fun ShortArray.maxWithOrNull(
comparator: Comparator<in Short>
): Short?
minByOrNull
Returns the first element yielding the smallest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> ShortArray.minByOrNull(
selector: (Short) -> R
): Short?
minOf
Returns the smallest value among all values produced by selector function applied to each element in the array.
fun <R : Comparable<R>> any_array<R>.minOf(
selector: (Short) -> R
): R
minOfOrNull
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.
fun <R : Comparable<R>> any_array<R>.minOfOrNull(
selector: (Short) -> R
): R?
minOfWith
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.
fun <R> ShortArray.minOfWith(
comparator: Comparator<in R>,
selector: (Short) -> R
): R
minOfWithOrNull
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.
fun <R> ShortArray.minOfWithOrNull(
comparator: Comparator<in R>,
selector: (Short) -> R
): R?
minOrNull
Returns the smallest element or null
if there are no elements.
fun ShortArray.minOrNull(): Short?
minWith
Returns the first element having the smallest value according to the provided comparator.
fun ShortArray.minWith(
comparator: Comparator<in Short>
): Short
fun ShortArray.minWith(
comparator: Comparator<in Short>
): Short?
minWithOrNull
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
fun ShortArray.minWithOrNull(
comparator: Comparator<in Short>
): Short?
none
Returns true
if the array has no elements.
fun ShortArray.none(): Boolean
Returns true
if no elements match the given predicate.
fun ShortArray.none(predicate: (Short) -> Boolean): Boolean
onEach
Performs the given action on each element and returns the array itself afterwards.
fun ShortArray.onEach(action: (Short) -> Unit): ShortArray
onEachIndexed
Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.
fun ShortArray.onEachIndexed(
action: (index: Int, Short) -> Unit
): ShortArray
random
Returns a random element from this array.
fun ShortArray.random(): Short
Returns a random element from this array using the specified source of randomness.
fun ShortArray.random(random: Random): Short
randomOrNull
Returns a random element from this array, or null
if this array is empty.
fun ShortArray.randomOrNull(): Short?
Returns a random element from this array using the specified source of randomness, or null
if this array is empty.
fun ShortArray.randomOrNull(random: Random): Short?
reduce
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun ShortArray.reduce(
operation: (acc: Short, Short) -> Short
): Short
reduceIndexed
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.
fun ShortArray.reduceIndexed(
operation: (index: Int, acc: Short, Short) -> Short
): Short
reduceIndexedOrNull
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.
fun ShortArray.reduceIndexedOrNull(
operation: (index: Int, acc: Short, Short) -> Short
): Short?
reduceOrNull
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun ShortArray.reduceOrNull(
operation: (acc: Short, Short) -> Short
): Short?
reduceRight
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
fun ShortArray.reduceRight(
operation: (Short, acc: Short) -> Short
): Short
reduceRightIndexed
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.
fun ShortArray.reduceRightIndexed(
operation: (index: Int, Short, acc: Short) -> Short
): Short
reduceRightIndexedOrNull
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.
fun ShortArray.reduceRightIndexedOrNull(
operation: (index: Int, Short, acc: Short) -> Short
): Short?
reduceRightOrNull
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
fun ShortArray.reduceRightOrNull(
operation: (Short, acc: Short) -> Short
): Short?
refTo
fun ShortArray.refTo(index: Int): CValuesRef<ShortVar>
reverse
Reverses elements in the array in-place.
fun ShortArray.reverse()
Reverses elements of the array in the specified range in-place.
fun ShortArray.reverse(fromIndex: Int, toIndex: Int)
reversed
Returns a list with elements in reversed order.
fun ShortArray.reversed(): List<Short>
reversedArray
Returns an array with elements of this array in reversed order.
fun ShortArray.reversedArray(): ShortArray
runningFold
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.
fun <R> ShortArray.runningFold(
initial: R,
operation: (acc: R, Short) -> R
): List<R>
runningFoldIndexed
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.
fun <R> ShortArray.runningFoldIndexed(
initial: R,
operation: (index: Int, acc: R, Short) -> R
): List<R>
runningReduce
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.
fun ShortArray.runningReduce(
operation: (acc: Short, Short) -> Short
): List<Short>
runningReduceIndexed
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.
fun ShortArray.runningReduceIndexed(
operation: (index: Int, acc: Short, Short) -> Short
): List<Short>
scan
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.
fun <R> ShortArray.scan(
initial: R,
operation: (acc: R, Short) -> R
): List<R>
scanIndexed
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.
fun <R> ShortArray.scanIndexed(
initial: R,
operation: (index: Int, acc: R, Short) -> R
): List<R>
shuffle
Randomly shuffles elements in this array in-place.
fun ShortArray.shuffle()
Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.
fun ShortArray.shuffle(random: Random)
single
Returns the single element, or throws an exception if the array is empty or has more than one element.
fun ShortArray.single(): Short
Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.
fun ShortArray.single(predicate: (Short) -> Boolean): Short
singleOrNull
Returns single element, or null
if the array is empty or has more than one element.
fun ShortArray.singleOrNull(): Short?
Returns the single element matching the given predicate, or null
if element was not found or more than one element was found.
fun ShortArray.singleOrNull(
predicate: (Short) -> Boolean
): Short?
slice
Returns a list containing elements at indices in the specified indices range.
fun ShortArray.slice(indices: IntRange): List<Short>
Returns a list containing elements at specified indices.
fun ShortArray.slice(indices: Iterable<Int>): List<Short>
sliceArray
Returns an array containing elements of this array at specified indices.
fun ShortArray.sliceArray(
indices: Collection<Int>
): ShortArray
Returns an array containing elements at indices in the specified indices range.
fun ShortArray.sliceArray(indices: IntRange): ShortArray
sort
Sorts the array in-place according to the order specified by the given comparison function.
fun ShortArray.sort(comparison: (a: Short, b: Short) -> Int)
sortDescending
Sorts elements in the array in-place descending according to their natural sort order.
fun ShortArray.sortDescending()
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
fun ShortArray.sortDescending(fromIndex: Int, toIndex: Int)
sorted
Returns a list of all elements sorted according to their natural sort order.
fun ShortArray.sorted(): List<Short>
sortedArray
Returns an array with all elements of this array sorted according to their natural sort order.
fun ShortArray.sortedArray(): ShortArray
sortedArrayDescending
Returns an array with all elements of this array sorted descending according to their natural sort order.
fun ShortArray.sortedArrayDescending(): ShortArray
sortedBy
Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.
fun <R : Comparable<R>> ShortArray.sortedBy(
selector: (Short) -> R?
): List<Short>
sortedByDescending
Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.
fun <R : Comparable<R>> ShortArray.sortedByDescending(
selector: (Short) -> R?
): List<Short>
sortedDescending
Returns a list of all elements sorted descending according to their natural sort order.
fun ShortArray.sortedDescending(): List<Short>
sortedWith
Returns a list of all elements sorted according to the specified comparator.
fun ShortArray.sortedWith(
comparator: Comparator<in Short>
): List<Short>
subtract
Returns a set containing all elements that are contained by this array and not contained by the specified collection.
infix fun ShortArray.subtract(
other: Iterable<Short>
): Set<Short>
sum
Returns the sum of all elements in the array.
fun ShortArray.sum(): Int
sumBy
Returns the sum of all values produced by selector function applied to each element in the array.
fun ShortArray.sumBy(selector: (Short) -> Int): Int
sumByDouble
Returns the sum of all values produced by selector function applied to each element in the array.
fun ShortArray.sumByDouble(
selector: (Short) -> Double
): Double
sumOf
Returns the sum of all values produced by selector function applied to each element in the array.
fun ShortArray.sumOf(selector: (Short) -> Double): Double
fun ShortArray.sumOf(selector: (Short) -> Int): Int
fun ShortArray.sumOf(selector: (Short) -> Long): Long
fun ShortArray.sumOf(selector: (Short) -> UInt): UInt
fun ShortArray.sumOf(selector: (Short) -> ULong): ULong
fun ShortArray.sumOf(
selector: (Short) -> BigDecimal
): BigDecimal
fun ShortArray.sumOf(
selector: (Short) -> BigInteger
): BigInteger
take
Returns a list containing first n elements.
fun ShortArray.take(n: Int): List<Short>
takeLast
Returns a list containing last n elements.
fun ShortArray.takeLast(n: Int): List<Short>
takeLastWhile
Returns a list containing last elements satisfying the given predicate.
fun ShortArray.takeLastWhile(
predicate: (Short) -> Boolean
): List<Short>
takeWhile
Returns a list containing first elements satisfying the given predicate.
fun ShortArray.takeWhile(
predicate: (Short) -> Boolean
): List<Short>
toCollection
Appends all elements to the given destination collection.
fun <C : MutableCollection<in Short>> ShortArray.toCollection(
destination: C
): C
toCValues
fun ShortArray.toCValues(): CValues<ShortVar>
toHashSet
Returns a new HashSet of all elements.
fun ShortArray.toHashSet(): HashSet<Short>
toList
Returns a List containing all elements.
fun ShortArray.toList(): List<Short>
toMutableList
Returns a new MutableList filled with all elements of this array.
fun ShortArray.toMutableList(): MutableList<Short>
toMutableSet
Returns a new MutableSet containing all distinct elements from the given array.
fun ShortArray.toMutableSet(): MutableSet<Short>
toSet
Returns a Set of all elements.
fun ShortArray.toSet(): Set<Short>
toSortedSet
Returns a new SortedSet of all elements.
fun ShortArray.toSortedSet(): SortedSet<Short>
toUShortArray
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.
fun ShortArray.toUShortArray(): UShortArray
union
Returns a set containing all distinct elements from both collections.
infix fun ShortArray.union(
other: Iterable<Short>
): Set<Short>
withIndex
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.
fun ShortArray.withIndex(): Iterable<IndexedValue<Short>>
zip
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 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.
fun <R, V> ShortArray.zip(
other: Array<out R>,
transform: (a: Short, b: R) -> V
): List<V>
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.
infix fun <R> ShortArray.zip(
other: Iterable<R>
): List<Pair<Short, R>>
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.
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 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.
fun <V> ShortArray.zip(
other: ShortArray,
transform: (a: Short, b: Short) -> V
): List<V>