UShortArray
Constructors
Properties
size
Returns the number of elements in the array.
val
size
:
Int
Functions
containsAll
fun
containsAll
(
elements
:
Collection
<
UShort
>
)
:
Boolean
isEmpty
fun
isEmpty
(
)
:
Boolean
Extension Properties
indices
Returns the range of valid indices for the array.
val
UShortArray
.
indices
:
IntRange
lastIndex
Returns the last valid index for the array.
val
UShortArray
.
lastIndex
:
Int
Extension Functions
all
Returns
true
if all elements match the given
predicate
.
fun
UShortArray
.
all
(
predicate
:
(
UShort
)
->
Boolean
)
:
Boolean
fun
<
T
>
Iterable
<
T
>
.
all
(
predicate
:
(
T
)
->
Boolean
)
:
Boolean
any
Returns
true
if array has at least one element.
fun
UShortArray
.
any
(
)
:
Boolean
Returns
true
if at least one element matches the given
predicate
.
fun
UShortArray
.
any
(
predicate
:
(
UShort
)
->
Boolean
)
:
Boolean
fun
<
T
>
Iterable
<
T
>
.
any
(
predicate
:
(
T
)
->
Boolean
)
:
Boolean
asShortArray
Returns an array of type ShortArray , which is a view of this array where each element is a signed reinterpretation of the corresponding element of this array.
fun
UShortArray
.
asShortArray
(
)
:
ShortArray
associateBy
Returns a Map containing the elements from the given collection 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 collection.
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 collection and value is the element itself.
fun
<
T
,
K
,
M
:
MutableMap
<
in
K
,
in
T
>
>
Iterable
<
T
>
.
associateByTo
(
destination
:
M
,
keySelector
:
(
T
)
->
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 collection.
fun
<
T
,
K
,
V
,
M
:
MutableMap
<
in
K
,
in
V
>
>
Iterable
<
T
>
.
associateByTo
(
destination
:
M
,
keySelector
:
(
T
)
->
K
,
valueTransform
:
(
T
)
->
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 collection.
fun
<
T
,
K
,
V
,
M
:
MutableMap
<
in
K
,
in
V
>
>
Iterable
<
T
>
.
associateTo
(
destination
:
M
,
transform
:
(
T
)
->
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
>
UShortArray
.
associateWith
(
valueSelector
:
(
UShort
)
->
V
)
:
Map
<
UShort
,
V
>
Returns a Map where keys are elements from the given collection and values are produced by the valueSelector function applied to each element.
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
UShort
,
in
V
>
>
UShortArray
.
associateWithTo
(
destination
:
M
,
valueSelector
:
(
UShort
)
->
V
)
:
M
Populates and returns the destination mutable map with key-value pairs for each element of the given collection, where key is the element itself and value is provided by the valueSelector function applied to that key.
fun
<
K
,
V
,
M
:
MutableMap
<
in
K
,
in
V
>
>
Iterable
<
K
>
.
associateWithTo
(
destination
:
M
,
valueSelector
:
(
K
)
->
V
)
:
M
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
UShortArray
.
binarySearch
(
element
:
UShort
,
fromIndex
:
Int
=
0
,
toIndex
:
Int
=
size
)
:
Int
component1
Returns 1st element from the array.
operator
fun
UShortArray
.
component1
(
)
:
UShort
component2
Returns 2nd element from the array.
operator
fun
UShortArray
.
component2
(
)
:
UShort
component3
Returns 3rd element from the array.
operator
fun
UShortArray
.
component3
(
)
:
UShort
component4
Returns 4th element from the array.
operator
fun
UShortArray
.
component4
(
)
:
UShort
component5
Returns 5th element from the array.
operator
fun
UShortArray
.
component5
(
)
:
UShort
containsAll
Checks if all elements in the specified collection are contained in this collection.
fun
<
T
>
Collection
<
T
>
.
containsAll
(
elements
:
Collection
<
T
>
)
:
Boolean
contentEquals
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.
infix
fun
UShortArray
?
.
contentEquals
(
other
:
UShortArray
?
)
:
Boolean
infix
fun
UShortArray
.
contentEquals
(
other
:
UShortArray
)
:
Boolean
contentHashCode
Returns a hash code based on the contents of this array as if it is List .
fun
UShortArray
?
.
contentHashCode
(
)
:
Int
fun
UShortArray
.
contentHashCode
(
)
:
Int
contentToString
Returns a string representation of the contents of the specified array as if it is List .
fun
UShortArray
?
.
contentToString
(
)
:
String
fun
UShortArray
.
contentToString
(
)
:
String
copyInto
Copies this array or its subrange into the destination array and returns that array.
fun
UShortArray
.
copyInto
(
destination
:
UShortArray
,
destinationOffset
:
Int
=
0
,
startIndex
:
Int
=
0
,
endIndex
:
Int
=
size
)
:
UShortArray
copyOf
Returns new array which is a copy of the original array.
fun
UShortArray
.
copyOf
(
)
:
UShortArray
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.
fun
UShortArray
.
copyOf
(
newSize
:
Int
)
:
UShortArray
copyOfRange
Returns a new array which is a copy of the specified range of the original array.
fun
UShortArray
.
copyOfRange
(
fromIndex
:
Int
,
toIndex
:
Int
)
:
UShortArray
count
Returns the number of elements matching the given predicate .
fun
UShortArray
.
count
(
predicate
:
(
UShort
)
->
Boolean
)
:
Int
fun
<
T
>
Iterable
<
T
>
.
count
(
predicate
:
(
T
)
->
Boolean
)
:
Int
drop
Returns a list containing all elements except first n elements.
fun
UShortArray
.
drop
(
n
:
Int
)
:
List
<
UShort
>
dropLast
Returns a list containing all elements except last n elements.
fun
UShortArray
.
dropLast
(
n
:
Int
)
:
List
<
UShort
>
dropLastWhile
Returns a list containing all elements except last elements that satisfy the given predicate .
fun
UShortArray
.
dropLastWhile
(
predicate
:
(
UShort
)
->
Boolean
)
:
List
<
UShort
>
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
UShortArray
.
elementAtOrElse
(
index
:
Int
,
defaultValue
:
(
Int
)
->
UShort
)
:
UShort
Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this collection.
fun
<
T
>
Iterable
<
T
>
.
elementAtOrElse
(
index
:
Int
,
defaultValue
:
(
Int
)
->
T
)
:
T
elementAtOrNull
Returns an element at the given
index
or
null
if the
index
is out of bounds of this array.
fun
UShortArray
.
elementAtOrNull
(
index
:
Int
)
:
UShort
?
fill
Fills this array or its subrange with the specified element value.
fun
UShortArray
.
fill
(
element
:
UShort
,
fromIndex
:
Int
=
0
,
toIndex
:
Int
=
size
)
filterIndexedTo
Appends all elements matching the given predicate to the given destination .
fun
<
C
:
MutableCollection
<
in
UShort
>
>
UShortArray
.
filterIndexedTo
(
destination
:
C
,
predicate
:
(
index
:
Int
,
UShort
)
->
Boolean
)
:
C
fun
<
T
,
C
:
MutableCollection
<
in
T
>
>
Iterable
<
T
>
.
filterIndexedTo
(
destination
:
C
,
predicate
:
(
index
:
Int
,
T
)
->
Boolean
)
:
C
filterIsInstanceTo
Appends all elements that are instances of specified type parameter R to the given destination .
fun
<
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
*
>
.
filterIsInstanceTo
(
destination
:
C
)
:
C
filterNotNullTo
Appends all elements that are not
null
to the given
destination
.
fun
<
C
:
MutableCollection
<
in
T
>
,
T
:
Any
>
Iterable
<
T
?
>
.
filterNotNullTo
(
destination
:
C
)
:
C
filterNotTo
Appends all elements not matching the given predicate to the given destination .
fun
<
C
:
MutableCollection
<
in
UShort
>
>
UShortArray
.
filterNotTo
(
destination
:
C
,
predicate
:
(
UShort
)
->
Boolean
)
:
C
fun
<
T
,
C
:
MutableCollection
<
in
T
>
>
Iterable
<
T
>
.
filterNotTo
(
destination
:
C
,
predicate
:
(
T
)
->
Boolean
)
:
C
filterTo
Appends all elements matching the given predicate to the given destination .
fun
<
C
:
MutableCollection
<
in
UShort
>
>
UShortArray
.
filterTo
(
destination
:
C
,
predicate
:
(
UShort
)
->
Boolean
)
:
C
fun
<
T
,
C
:
MutableCollection
<
in
T
>
>
Iterable
<
T
>
.
filterTo
(
destination
:
C
,
predicate
:
(
T
)
->
Boolean
)
:
C
find
Returns the first element matching the given
predicate
, or
null
if no such element was found.
fun
UShortArray
.
find
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
find
(
predicate
:
(
T
)
->
Boolean
)
:
T
?
findLast
Returns the last element matching the given
predicate
, or
null
if no such element was found.
fun
UShortArray
.
findLast
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
findLast
(
predicate
:
(
T
)
->
Boolean
)
:
T
?
first
Returns the first element.
fun
UShortArray
.
first
(
)
:
UShort
Returns the first element matching the given predicate .
fun
UShortArray
.
first
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
fun
<
T
>
Iterable
<
T
>
.
first
(
predicate
:
(
T
)
->
Boolean
)
:
T
firstNotNullOf
Returns the first non-null value produced by transform function being applied to elements of this collection in iteration order, or throws NoSuchElementException if no non-null value was produced.
fun
<
T
,
R
:
Any
>
Iterable
<
T
>
.
firstNotNullOf
(
transform
:
(
T
)
->
R
?
)
:
R
firstOrNull
Returns the first element, or
null
if the array is empty.
fun
UShortArray
.
firstOrNull
(
)
:
UShort
?
Returns the first element matching the given
predicate
, or
null
if element was not found.
fun
UShortArray
.
firstOrNull
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
firstOrNull
(
predicate
:
(
T
)
->
Boolean
)
:
T
?
flatMap
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
fun
<
R
>
UShortArray
.
flatMap
(
transform
:
(
UShort
)
->
Iterable
<
R
>
)
:
List
<
R
>
Returns a single list of all elements yielded from results of transform function being invoked on each element of original collection.
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
>
UShortArray
.
flatMapIndexed
(
transform
:
(
index
:
Int
,
UShort
)
->
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 collection.
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
>
>
UShortArray
.
flatMapIndexedTo
(
destination
:
C
,
transform
:
(
index
:
Int
,
UShort
)
->
Iterable
<
R
>
)
:
C
Appends all elements yielded from results of transform function being invoked on each element and its index in the original collection, to the given destination .
fun
<
T
,
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
flatMapIndexedTo
(
destination
:
C
,
transform
:
(
index
:
Int
,
T
)
->
Iterable
<
R
>
)
:
C
fun
<
T
,
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
flatMapIndexedTo
(
destination
:
C
,
transform
:
(
index
:
Int
,
T
)
->
Sequence
<
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
>
>
UShortArray
.
flatMapTo
(
destination
:
C
,
transform
:
(
UShort
)
->
Iterable
<
R
>
)
:
C
Appends all elements yielded from results of transform function being invoked on each element of original collection, to the given destination .
fun
<
T
,
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
flatMapTo
(
destination
:
C
,
transform
:
(
T
)
->
Iterable
<
R
>
)
:
C
fun
<
T
,
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
flatMapTo
(
destination
:
C
,
transform
:
(
T
)
->
Sequence
<
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
>
UShortArray
.
fold
(
initial
:
R
,
operation
:
(
acc
:
R
,
UShort
)
->
R
)
:
R
fun
<
T
,
R
>
Iterable
<
T
>
.
fold
(
initial
:
R
,
operation
:
(
acc
:
R
,
T
)
->
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
>
UShortArray
.
foldIndexed
(
initial
:
R
,
operation
:
(
index
:
Int
,
acc
:
R
,
UShort
)
->
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
>
UShortArray
.
foldRight
(
initial
:
R
,
operation
:
(
UShort
,
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
>
UShortArray
.
foldRightIndexed
(
initial
:
R
,
operation
:
(
index
:
Int
,
UShort
,
acc
:
R
)
->
R
)
:
R
forEach
Performs the given action on each element.
fun
UShortArray
.
forEach
(
action
:
(
UShort
)
->
Unit
)
fun
<
T
>
Iterable
<
T
>
.
forEach
(
action
:
(
T
)
->
Unit
)
forEachIndexed
Performs the given action on each element, providing sequential index with the element.
fun
UShortArray
.
forEachIndexed
(
action
:
(
index
:
Int
,
UShort
)
->
Unit
)
fun
<
T
>
Iterable
<
T
>
.
forEachIndexed
(
action
:
(
index
:
Int
,
T
)
->
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
UShortArray
.
getOrElse
(
index
:
Int
,
defaultValue
:
(
Int
)
->
UShort
)
:
UShort
getOrNull
Returns an element at the given
index
or
null
if the
index
is out of bounds of this array.
fun
UShortArray
.
getOrNull
(
index
:
Int
)
:
UShort
?
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
>
UShortArray
.
groupBy
(
keySelector
:
(
UShort
)
->
K
)
:
Map
<
K
,
List
<
UShort
>
>
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
>
UShortArray
.
groupBy
(
keySelector
:
(
UShort
)
->
K
,
valueTransform
:
(
UShort
)
->
V
)
:
Map
<
K
,
List
<
V
>
>
Groups elements of the original collection 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 collection 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.
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
<
UShort
>
>
>
UShortArray
.
groupByTo
(
destination
:
M
,
keySelector
:
(
UShort
)
->
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
>
>
>
UShortArray
.
groupByTo
(
destination
:
M
,
keySelector
:
(
UShort
)
->
K
,
valueTransform
:
(
UShort
)
->
V
)
:
M
Groups elements of the original collection 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
<
T
,
K
,
M
:
MutableMap
<
in
K
,
MutableList
<
T
>
>
>
Iterable
<
T
>
.
groupByTo
(
destination
:
M
,
keySelector
:
(
T
)
->
K
)
:
M
Groups values returned by the valueTransform function applied to each element of the original collection 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
<
T
,
K
,
V
,
M
:
MutableMap
<
in
K
,
MutableList
<
V
>
>
>
Iterable
<
T
>
.
groupByTo
(
destination
:
M
,
keySelector
:
(
T
)
->
K
,
valueTransform
:
(
T
)
->
V
)
:
M
groupingBy
Creates a Grouping source from a collection to be used later with one of group-and-fold operations using the specified keySelector function to extract a key from each element.
ifEmpty
Returns this array if it's not empty or the result of calling defaultValue function if the array is empty.
fun
<
C
,
R
>
C
.
ifEmpty
(
defaultValue
:
(
)
->
R
)
:
R
where
C
:
Array
<
*
>
,
C
:
R
indexOf
Returns first index of element , or -1 if the array does not contain element.
fun
UShortArray
.
indexOf
(
element
:
UShort
)
:
Int
indexOfFirst
Returns index of the first element matching the given predicate , or -1 if the array does not contain such element.
fun
UShortArray
.
indexOfFirst
(
predicate
:
(
UShort
)
->
Boolean
)
:
Int
indexOfLast
Returns index of the last element matching the given predicate , or -1 if the array does not contain such element.
fun
UShortArray
.
indexOfLast
(
predicate
:
(
UShort
)
->
Boolean
)
:
Int
isNotEmpty
Returns
true
if the collection is not empty.
fun
<
T
>
Collection
<
T
>
.
isNotEmpty
(
)
:
Boolean
isNullOrEmpty
Returns
true
if this nullable collection is either null or empty.
fun
<
T
>
Collection
<
T
>
?
.
isNullOrEmpty
(
)
:
Boolean
joinTo
Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun
<
T
,
A
:
Appendable
>
Iterable
<
T
>
.
joinTo
(
buffer
:
A
,
separator
:
CharSequence
=
", "
,
prefix
:
CharSequence
=
""
,
postfix
:
CharSequence
=
""
,
limit
:
Int
=
-1
,
truncated
:
CharSequence
=
"..."
,
transform
:
(
(
T
)
->
CharSequence
)
?
=
null
)
:
A
joinToString
Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun
<
T
>
Iterable
<
T
>
.
joinToString
(
separator
:
CharSequence
=
", "
,
prefix
:
CharSequence
=
""
,
postfix
:
CharSequence
=
""
,
limit
:
Int
=
-1
,
truncated
:
CharSequence
=
"..."
,
transform
:
(
(
T
)
->
CharSequence
)
?
=
null
)
:
String
last
Returns the last element.
fun
UShortArray
.
last
(
)
:
UShort
Returns the last element matching the given predicate .
fun
UShortArray
.
last
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
fun
<
T
>
Iterable
<
T
>
.
last
(
predicate
:
(
T
)
->
Boolean
)
:
T
lastIndexOf
Returns last index of element , or -1 if the array does not contain element.
fun
UShortArray
.
lastIndexOf
(
element
:
UShort
)
:
Int
lastOrNull
Returns the last element, or
null
if the array is empty.
fun
UShortArray
.
lastOrNull
(
)
:
UShort
?
Returns the last element matching the given
predicate
, or
null
if no such element was found.
fun
UShortArray
.
lastOrNull
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
lastOrNull
(
predicate
:
(
T
)
->
Boolean
)
:
T
?
map
Returns a list containing the results of applying the given transform function to each element in the original array.
fun
<
R
>
UShortArray
.
map
(
transform
:
(
UShort
)
->
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
>
UShortArray
.
mapIndexed
(
transform
:
(
index
:
Int
,
UShort
)
->
R
)
:
List
<
R
>
mapIndexedNotNullTo
Applies the given transform function to each element and its index in the original collection and appends only the non-null results to the given destination .
fun
<
T
,
R
:
Any
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
mapIndexedNotNullTo
(
destination
:
C
,
transform
:
(
index
:
Int
,
T
)
->
R
?
)
:
C
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
>
>
UShortArray
.
mapIndexedTo
(
destination
:
C
,
transform
:
(
index
:
Int
,
UShort
)
->
R
)
:
C
Applies the given transform function to each element and its index in the original collection and appends the results to the given destination .
fun
<
T
,
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
mapIndexedTo
(
destination
:
C
,
transform
:
(
index
:
Int
,
T
)
->
R
)
:
C
mapNotNullTo
Applies the given transform function to each element in the original collection and appends only the non-null results to the given destination .
fun
<
T
,
R
:
Any
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
mapNotNullTo
(
destination
:
C
,
transform
:
(
T
)
->
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
>
>
UShortArray
.
mapTo
(
destination
:
C
,
transform
:
(
UShort
)
->
R
)
:
C
Applies the given transform function to each element of the original collection and appends the results to the given destination .
fun
<
T
,
R
,
C
:
MutableCollection
<
in
R
>
>
Iterable
<
T
>
.
mapTo
(
destination
:
C
,
transform
:
(
T
)
->
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
>
>
UShortArray
.
maxByOrNull
(
selector
:
(
UShort
)
->
R
)
:
UShort
?
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
maxByOrNull
(
selector
:
(
T
)
->
R
)
:
T
?
maxOf
Returns the largest value among all values produced by selector function applied to each element in the array.
fun
UShortArray
.
maxOf
(
selector
:
(
UShort
)
->
Double
)
:
Double
fun
UShortArray
.
maxOf
(
selector
:
(
UShort
)
->
Float
)
:
Float
fun
<
R
:
Comparable
<
R
>
>
UShortArray
.
maxOf
(
selector
:
(
UShort
)
->
R
)
:
R
Returns the largest value among all values produced by selector function applied to each element in the collection.
fun
<
T
>
Iterable
<
T
>
.
maxOf
(
selector
:
(
T
)
->
Double
)
:
Double
fun
<
T
>
Iterable
<
T
>
.
maxOf
(
selector
:
(
T
)
->
Float
)
:
Float
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
maxOf
(
selector
:
(
T
)
->
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
UShortArray
.
maxOfOrNull
(
selector
:
(
UShort
)
->
Double
)
:
Double
?
fun
UShortArray
.
maxOfOrNull
(
selector
:
(
UShort
)
->
Float
)
:
Float
?
fun
<
R
:
Comparable
<
R
>
>
UShortArray
.
maxOfOrNull
(
selector
:
(
UShort
)
->
R
)
:
R
?
Returns the largest value among all values produced by
selector
function
applied to each element in the collection or
null
if there are no elements.
fun
<
T
>
Iterable
<
T
>
.
maxOfOrNull
(
selector
:
(
T
)
->
Double
)
:
Double
?
fun
<
T
>
Iterable
<
T
>
.
maxOfOrNull
(
selector
:
(
T
)
->
Float
)
:
Float
?
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
maxOfOrNull
(
selector
:
(
T
)
->
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
>
UShortArray
.
maxOfWith
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
UShort
)
->
R
)
:
R
Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the collection.
fun
<
T
,
R
>
Iterable
<
T
>
.
maxOfWith
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
T
)
->
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
>
UShortArray
.
maxOfWithOrNull
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
UShort
)
->
R
)
:
R
?
Returns the largest value according to the provided
comparator
among all values produced by
selector
function applied to each element in the collection or
null
if there are no elements.
fun
<
T
,
R
>
Iterable
<
T
>
.
maxOfWithOrNull
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
T
)
->
R
)
:
R
?
maxOrNull
Returns the largest element or
null
if there are no elements.
fun
UShortArray
.
maxOrNull
(
)
:
UShort
?
maxWith
Returns the first element having the largest value according to the provided comparator .
fun
UShortArray
.
maxWith
(
comparator
:
Comparator
<
in
UShort
>
)
:
UShort
fun
<
T
>
Iterable
<
T
>
.
maxWith
(
comparator
:
Comparator
<
in
T
>
)
:
T
fun
UShortArray
.
maxWith
(
comparator
:
Comparator
<
in
UShort
>
)
:
UShort
?
maxWithOrNull
Returns the first element having the largest value according to the provided
comparator
or
null
if there are no elements.
fun
UShortArray
.
maxWithOrNull
(
comparator
:
Comparator
<
in
UShort
>
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
maxWithOrNull
(
comparator
:
Comparator
<
in
T
>
)
:
T
?
minByOrNull
Returns the first element yielding the smallest value of the given function or
null
if there are no elements.
fun
<
R
:
Comparable
<
R
>
>
UShortArray
.
minByOrNull
(
selector
:
(
UShort
)
->
R
)
:
UShort
?
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
minByOrNull
(
selector
:
(
T
)
->
R
)
:
T
?
minOf
Returns the smallest value among all values produced by selector function applied to each element in the array.
fun
UShortArray
.
minOf
(
selector
:
(
UShort
)
->
Double
)
:
Double
fun
UShortArray
.
minOf
(
selector
:
(
UShort
)
->
Float
)
:
Float
fun
<
R
:
Comparable
<
R
>
>
UShortArray
.
minOf
(
selector
:
(
UShort
)
->
R
)
:
R
Returns the smallest value among all values produced by selector function applied to each element in the collection.
fun
<
T
>
Iterable
<
T
>
.
minOf
(
selector
:
(
T
)
->
Double
)
:
Double
fun
<
T
>
Iterable
<
T
>
.
minOf
(
selector
:
(
T
)
->
Float
)
:
Float
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
minOf
(
selector
:
(
T
)
->
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
UShortArray
.
minOfOrNull
(
selector
:
(
UShort
)
->
Double
)
:
Double
?
fun
UShortArray
.
minOfOrNull
(
selector
:
(
UShort
)
->
Float
)
:
Float
?
fun
<
R
:
Comparable
<
R
>
>
UShortArray
.
minOfOrNull
(
selector
:
(
UShort
)
->
R
)
:
R
?
Returns the smallest value among all values produced by
selector
function
applied to each element in the collection or
null
if there are no elements.
fun
<
T
>
Iterable
<
T
>
.
minOfOrNull
(
selector
:
(
T
)
->
Double
)
:
Double
?
fun
<
T
>
Iterable
<
T
>
.
minOfOrNull
(
selector
:
(
T
)
->
Float
)
:
Float
?
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
minOfOrNull
(
selector
:
(
T
)
->
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
>
UShortArray
.
minOfWith
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
UShort
)
->
R
)
:
R
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the collection.
fun
<
T
,
R
>
Iterable
<
T
>
.
minOfWith
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
T
)
->
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
>
UShortArray
.
minOfWithOrNull
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
UShort
)
->
R
)
:
R
?
Returns the smallest value according to the provided
comparator
among all values produced by
selector
function applied to each element in the collection or
null
if there are no elements.
fun
<
T
,
R
>
Iterable
<
T
>
.
minOfWithOrNull
(
comparator
:
Comparator
<
in
R
>
,
selector
:
(
T
)
->
R
)
:
R
?
minOrNull
Returns the smallest element or
null
if there are no elements.
fun
UShortArray
.
minOrNull
(
)
:
UShort
?
minus
Returns a list containing all elements of the original collection without the first occurrence of the given element .
Returns a list containing all elements of the original collection except the elements contained in the given elements array.
Returns a list containing all elements of the original collection except the elements contained in the given elements collection.
minWith
Returns the first element having the smallest value according to the provided comparator .
fun
UShortArray
.
minWith
(
comparator
:
Comparator
<
in
UShort
>
)
:
UShort
fun
<
T
>
Iterable
<
T
>
.
minWith
(
comparator
:
Comparator
<
in
T
>
)
:
T
fun
UShortArray
.
minWith
(
comparator
:
Comparator
<
in
UShort
>
)
:
UShort
?
minWithOrNull
Returns the first element having the smallest value according to the provided
comparator
or
null
if there are no elements.
fun
UShortArray
.
minWithOrNull
(
comparator
:
Comparator
<
in
UShort
>
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
minWithOrNull
(
comparator
:
Comparator
<
in
T
>
)
:
T
?
none
Returns
true
if the array has no elements.
fun
UShortArray
.
none
(
)
:
Boolean
Returns
true
if no elements match the given
predicate
.
fun
UShortArray
.
none
(
predicate
:
(
UShort
)
->
Boolean
)
:
Boolean
fun
<
T
>
Iterable
<
T
>
.
none
(
predicate
:
(
T
)
->
Boolean
)
:
Boolean
onEach
Performs the given action on each element and returns the array itself afterwards.
fun
UShortArray
.
onEach
(
action
:
(
UShort
)
->
Unit
)
:
UShortArray
onEachIndexed
Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.
fun
UShortArray
.
onEachIndexed
(
action
:
(
index
:
Int
,
UShort
)
->
Unit
)
:
UShortArray
orEmpty
Returns this Collection if it's not
null
and the empty list otherwise.
fun
<
T
>
Collection
<
T
>
?
.
orEmpty
(
)
:
Collection
<
T
>
plus
Returns an array containing all elements of the original array and then the given element .
operator
fun
UShortArray
.
plus
(
element
:
UShort
)
:
UShortArray
Returns an array containing all elements of the original array and then all elements of the given elements collection.
operator
fun
UShortArray
.
plus
(
elements
:
Collection
<
UShort
>
)
:
UShortArray
Returns an array containing all elements of the original array and then all elements of the given elements array.
operator
fun
UShortArray
.
plus
(
elements
:
UShortArray
)
:
UShortArray
Returns a list containing all elements of the original collection and then the given element .
operator
fun
<
T
>
Collection
<
T
>
.
plus
(
element
:
T
)
:
List
<
T
>
Returns a list containing all elements of the original collection and then all elements of the given elements array.
operator
fun
<
T
>
Collection
<
T
>
.
plus
(
elements
:
Array
<
out
T
>
)
:
List
<
T
>
Returns a list containing all elements of the original collection and then all elements of the given elements collection.
operator
fun
<
T
>
Collection
<
T
>
.
plus
(
elements
:
Iterable
<
T
>
)
:
List
<
T
>
plusElement
Returns a list containing all elements of the original collection and then the given element .
fun
<
T
>
Collection
<
T
>
.
plusElement
(
element
:
T
)
:
List
<
T
>
random
Returns a random element from this array.
fun
UShortArray
.
random
(
)
:
UShort
Returns a random element from this array using the specified source of randomness.
fun
UShortArray
.
random
(
random
:
Random
)
:
UShort
randomOrNull
Returns a random element from this array, or
null
if this array is empty.
fun
UShortArray
.
randomOrNull
(
)
:
UShort
?
Returns a random element from this array using the specified source of randomness, or
null
if this array is empty.
fun
UShortArray
.
randomOrNull
(
random
:
Random
)
:
UShort
?
reduce
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun
UShortArray
.
reduce
(
operation
:
(
acc
:
UShort
,
UShort
)
->
UShort
)
:
UShort
fun
<
S
,
T
:
S
>
Iterable
<
T
>
.
reduce
(
operation
:
(
acc
:
S
,
T
)
->
S
)
:
S
reduceIndexed
reduceIndexedOrNull
reduceOrNull
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun
UShortArray
.
reduceOrNull
(
operation
:
(
acc
:
UShort
,
UShort
)
->
UShort
)
:
UShort
?
fun
<
S
,
T
:
S
>
Iterable
<
T
>
.
reduceOrNull
(
operation
:
(
acc
:
S
,
T
)
->
S
)
:
S
?
refTo
fun
UShortArray
.
refTo
(
index
:
Int
)
:
CValuesRef
<
UShortVar
>
requireNoNulls
Returns an original collection containing all the non-
null
elements, throwing an
IllegalArgumentException
if there are any
null
elements.
reverse
Reverses elements in the array in-place.
fun
UShortArray
.
reverse
(
)
Reverses elements of the array in the specified range in-place.
fun
UShortArray
.
reverse
(
fromIndex
:
Int
,
toIndex
:
Int
)
reversed
Returns a list with elements in reversed order.
fun
UShortArray
.
reversed
(
)
:
List
<
UShort
>
reversedArray
Returns an array with elements of this array in reversed order.
fun
UShortArray
.
reversedArray
(
)
:
UShortArray
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
>
UShortArray
.
runningFold
(
initial
:
R
,
operation
:
(
acc
:
R
,
UShort
)
->
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
>
UShortArray
.
runningFoldIndexed
(
initial
:
R
,
operation
:
(
index
:
Int
,
acc
:
R
,
UShort
)
->
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.
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 collection.
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.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original collection and current accumulator value that starts with the first element of this collection.
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
>
UShortArray
.
scan
(
initial
:
R
,
operation
:
(
acc
:
R
,
UShort
)
->
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
>
UShortArray
.
scanIndexed
(
initial
:
R
,
operation
:
(
index
:
Int
,
acc
:
R
,
UShort
)
->
R
)
:
List
<
R
>
shuffle
Randomly shuffles elements in this array in-place.
fun
UShortArray
.
shuffle
(
)
Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.
fun
UShortArray
.
shuffle
(
random
:
Random
)
single
Returns the single element, or throws an exception if the array is empty or has more than one element.
fun
UShortArray
.
single
(
)
:
UShort
Returns the single element matching the given predicate , or throws exception if there is no or more than one matching element.
fun
UShortArray
.
single
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
fun
<
T
>
Iterable
<
T
>
.
single
(
predicate
:
(
T
)
->
Boolean
)
:
T
singleOrNull
Returns single element, or
null
if the array is empty or has more than one element.
fun
UShortArray
.
singleOrNull
(
)
:
UShort
?
Returns the single element matching the given
predicate
, or
null
if element was not found or more than one element was found.
fun
UShortArray
.
singleOrNull
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
?
fun
<
T
>
Iterable
<
T
>
.
singleOrNull
(
predicate
:
(
T
)
->
Boolean
)
:
T
?
slice
Returns a list containing elements at indices in the specified indices range.
fun
UShortArray
.
slice
(
indices
:
IntRange
)
:
List
<
UShort
>
Returns a list containing elements at specified indices .
fun
UShortArray
.
slice
(
indices
:
Iterable
<
Int
>
)
:
List
<
UShort
>
sliceArray
Returns an array containing elements of this array at specified indices .
fun
UShortArray
.
sliceArray
(
indices
:
Collection
<
Int
>
)
:
UShortArray
Returns an array containing elements at indices in the specified indices range.
fun
UShortArray
.
sliceArray
(
indices
:
IntRange
)
:
UShortArray
sort
Sorts the array in-place.
fun
UShortArray
.
sort
(
)
Sorts a range in the array in-place.
fun
UShortArray
.
sort
(
fromIndex
:
Int
=
0
,
toIndex
:
Int
=
size
)
sortDescending
Sorts elements in the array in-place descending according to their natural sort order.
fun
UShortArray
.
sortDescending
(
)
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
fun
UShortArray
.
sortDescending
(
fromIndex
:
Int
,
toIndex
:
Int
)
sorted
Returns a list of all elements sorted according to their natural sort order.
fun
UShortArray
.
sorted
(
)
:
List
<
UShort
>
sortedArray
Returns an array with all elements of this array sorted according to their natural sort order.
fun
UShortArray
.
sortedArray
(
)
:
UShortArray
sortedArrayDescending
Returns an array with all elements of this array sorted descending according to their natural sort order.
fun
UShortArray
.
sortedArrayDescending
(
)
:
UShortArray
sortedBy
Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
sortedBy
(
selector
:
(
T
)
->
R
?
)
:
List
<
T
>
sortedByDescending
Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.
fun
<
T
,
R
:
Comparable
<
R
>
>
Iterable
<
T
>
.
sortedByDescending
(
selector
:
(
T
)
->
R
?
)
:
List
<
T
>
sortedDescending
Returns a list of all elements sorted descending according to their natural sort order.
fun
UShortArray
.
sortedDescending
(
)
:
List
<
UShort
>
sortedWith
Returns a list of all elements sorted according to the specified comparator .
fun
<
T
>
Iterable
<
T
>
.
sortedWith
(
comparator
:
Comparator
<
in
T
>
)
:
List
<
T
>
sum
Returns the sum of all elements in the array.
fun
UShortArray
.
sum
(
)
:
UInt
sumBy
Returns the sum of all values produced by selector function applied to each element in the array.
fun
UShortArray
.
sumBy
(
selector
:
(
UShort
)
->
UInt
)
:
UInt
sumByDouble
Returns the sum of all values produced by selector function applied to each element in the array.
fun
UShortArray
.
sumByDouble
(
selector
:
(
UShort
)
->
Double
)
:
Double
sumOf
Returns the sum of all values produced by selector function applied to each element in the array.
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
Double
)
:
Double
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
Int
)
:
Int
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
Long
)
:
Long
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
UInt
)
:
UInt
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
ULong
)
:
ULong
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
BigDecimal
)
:
BigDecimal
fun
UShortArray
.
sumOf
(
selector
:
(
UShort
)
->
BigInteger
)
:
BigInteger
Returns the sum of all values produced by selector function applied to each element in the collection.
fun
<
T
>
Iterable
<
T
>
.
sumOf
(
selector
:
(
T
)
->
Double
)
:
Double
fun
<
T
>
Iterable
<
T
>
.
sumOf
(
selector
:
(
T
)
->
Int
)
:
Int
fun
<
T
>
Iterable
<
T
>
.
sumOf
(
selector
:
(
T
)
->
Long
)
:
Long
take
Returns a list containing first n elements.
fun
UShortArray
.
take
(
n
:
Int
)
:
List
<
UShort
>
takeLast
Returns a list containing last n elements.
fun
UShortArray
.
takeLast
(
n
:
Int
)
:
List
<
UShort
>
takeLastWhile
Returns a list containing last elements satisfying the given predicate .
fun
UShortArray
.
takeLastWhile
(
predicate
:
(
UShort
)
->
Boolean
)
:
List
<
UShort
>
toCollection
Appends all elements to the given destination collection.
fun
<
T
,
C
:
MutableCollection
<
in
T
>
>
Iterable
<
T
>
.
toCollection
(
destination
:
C
)
:
C
toCValues
fun
UShortArray
.
toCValues
(
)
:
CValues
<
UShortVar
>
toMutableSet
Returns a new MutableSet containing all distinct elements from the given collection.
fun
<
T
>
Iterable
<
T
>
.
toMutableSet
(
)
:
MutableSet
<
T
>
toShortArray
Returns an array of type ShortArray , which is a copy of this array where each element is a signed reinterpretation of the corresponding element of this array.
fun
UShortArray
.
toShortArray
(
)
:
ShortArray
toTypedArray
Returns a typed object array containing all of the elements of this primitive array.
fun
UShortArray
.
toTypedArray
(
)
:
Array
<
UShort
>
toUShortArray
Returns an array of UShort containing all of the elements of this collection.
fun
Collection
<
UShort
>
.
toUShortArray
(
)
:
UShortArray
windowed
Returns a list of snapshots of the window of the given size sliding along this collection with the given step , where each snapshot is a list.
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
UShortArray
.
withIndex
(
)
:
Iterable
<
IndexedValue
<
UShort
>
>
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.
infix
fun
<
R
>
UShortArray
.
zip
(
other
:
Array
<
out
R
>
)
:
List
<
Pair
<
UShort
,
R
>
>
infix
fun
UShortArray
.
zip
(
other
:
UShortArray
)
:
List
<
Pair
<
UShort
,
UShort
>
>
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
>
UShortArray
.
zip
(
other
:
Array
<
out
R
>
,
transform
:
(
a
:
UShort
,
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
>
UShortArray
.
zip
(
other
:
Iterable
<
R
>
)
:
List
<
Pair
<
UShort
,
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
>
UShortArray
.
zip
(
other
:
Iterable
<
R
>
,
transform
:
(
a
:
UShort
,
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
>
UShortArray
.
zip
(
other
:
UShortArray
,
transform
:
(
a
:
UShort
,
b
:
UShort
)
->
V
)
:
List
<
V
>
Returns a list of pairs built from the elements of
this
collection 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
collection 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 pairs built from the elements of
this
collection and
other
collection with the same index.
The returned list has length of the shortest collection.
zipWithNext
Returns a list of pairs of each two adjacent elements in this collection.