DoubleArray

class DoubleArray(size: Int)

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

class DoubleArray(size: Int)

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

Constructors

Link copied to clipboard
fun DoubleArray(size: Int, init: (Int) -> Double)

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

fun DoubleArray(size: Int, init: (Int) -> Double)

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

fun DoubleArray(size: Int, init: (Int) -> Double)

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

Link copied to clipboard
fun DoubleArray(size: Int)

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

fun DoubleArray(size: Int)

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

fun DoubleArray(size: Int)

Functions

Link copied to clipboard
operator fun get(index: Int): Double

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

operator fun get(index: Int): Double

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

operator external fun get(index: Int): Double

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

Link copied to clipboard
operator fun iterator(): DoubleIterator

Creates an iterator over the elements of the array.

operator fun iterator(): DoubleIterator

Creates an iterator over the elements of the array.

operator fun iterator(): DoubleIterator

Creates an iterator over the elements of the array.

Link copied to clipboard
operator fun set(index: Int, value: Double)

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

operator fun set(index: Int, value: Double)

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

operator external fun set(index: Int, value: Double)

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

Properties

Link copied to clipboard
val size: Int

Returns the number of elements in the array.

val size: Int

Returns the number of elements in the array.

val size: Int

Returns the number of elements in the array.

Extensions

Link copied to clipboard
inline fun DoubleArray.all(predicate: (Double) -> Boolean): Boolean
inline fun DoubleArray.all(predicate: (Double) -> Boolean): Boolean
inline fun DoubleArray.all(predicate: (Double) -> Boolean): Boolean

Returns true if all elements match the given predicate.

Link copied to clipboard

Returns true if array has at least one element.

inline fun DoubleArray.any(predicate: (Double) -> Boolean): Boolean
inline fun DoubleArray.any(predicate: (Double) -> Boolean): Boolean
inline fun DoubleArray.any(predicate: (Double) -> Boolean): Boolean

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

Link copied to clipboard

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

Link copied to clipboard
expect fun DoubleArray.asList(): List<Double>
expect fun DoubleArray.asList(): List<Double>
expect fun DoubleArray.asList(): List<Double>

Returns a List that wraps the original array.

actual fun DoubleArray.asList(): List<Double>
actual fun DoubleArray.asList(): List<Double>
actual fun DoubleArray.asList(): List<Double>

Returns a List that wraps the original array.

actual inline fun DoubleArray.asList(): List<Double>
actual inline fun DoubleArray.asList(): List<Double>
actual inline fun DoubleArray.asList(): List<Double>

Returns a List that wraps the original array.

actual fun DoubleArray.asList(): List<Double>
actual fun DoubleArray.asList(): List<Double>
actual fun DoubleArray.asList(): List<Double>

Returns a List that wraps the original array.

Link copied to clipboard

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

Link copied to clipboard
inline fun <K, V> DoubleArray.associate(transform: (Double) -> Pair<K, V>): Map<K, V>
inline fun <K, V> DoubleArray.associate(transform: (Double) -> Pair<K, V>): Map<K, V>
inline fun <K, V> DoubleArray.associate(transform: (Double) -> Pair<K, V>): Map<K, V>

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

Link copied to clipboard
inline fun <K> DoubleArray.associateBy(keySelector: (Double) -> K): Map<K, Double>
inline fun <K> DoubleArray.associateBy(keySelector: (Double) -> K): Map<K, Double>
inline fun <K> DoubleArray.associateBy(keySelector: (Double) -> K): Map<K, Double>

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

inline fun <K, V> DoubleArray.associateBy(keySelector: (Double) -> K, valueTransform: (Double) -> V): Map<K, V>
inline fun <K, V> DoubleArray.associateBy(keySelector: (Double) -> K, valueTransform: (Double) -> V): Map<K, V>
inline fun <K, V> DoubleArray.associateBy(keySelector: (Double) -> K, valueTransform: (Double) -> 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.

Link copied to clipboard
inline fun <K, M : MutableMap<in K, in Double>> DoubleArray.associateByTo(destination: M, keySelector: (Double) -> K): M
inline fun <K, M : MutableMap<in K, in Double>> DoubleArray.associateByTo(destination: M, keySelector: (Double) -> K): M
inline fun <K, M : MutableMap<in K, in Double>> DoubleArray.associateByTo(destination: M, keySelector: (Double) -> 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.

inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateByTo(    destination: M,     keySelector: (Double) -> K,     valueTransform: (Double) -> V): M
inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateByTo(    destination: M,     keySelector: (Double) -> K,     valueTransform: (Double) -> V): M
inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateByTo(    destination: M,     keySelector: (Double) -> K,     valueTransform: (Double) -> 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.

Link copied to clipboard
inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateTo(destination: M, transform: (Double) -> Pair<K, V>): M
inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateTo(destination: M, transform: (Double) -> Pair<K, V>): M
inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateTo(destination: M, transform: (Double) -> 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.

Link copied to clipboard
inline fun <V> DoubleArray.associateWith(valueSelector: (Double) -> V): Map<Double, V>
inline fun <V> DoubleArray.associateWith(valueSelector: (Double) -> V): Map<Double, V>
inline fun <V> DoubleArray.associateWith(valueSelector: (Double) -> V): Map<Double, V>

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

Link copied to clipboard
inline fun <V, M : MutableMap<in Double, in V>> DoubleArray.associateWithTo(destination: M, valueSelector: (Double) -> V): M
inline fun <V, M : MutableMap<in Double, in V>> DoubleArray.associateWithTo(destination: M, valueSelector: (Double) -> V): M
inline fun <V, M : MutableMap<in Double, in V>> DoubleArray.associateWithTo(destination: M, valueSelector: (Double) -> 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.

Link copied to clipboard

Returns an average value of elements in the array.

Link copied to clipboard
fun DoubleArray.binarySearch(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size): Int
fun DoubleArray.binarySearch(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size): Int
fun DoubleArray.binarySearch(    element: Double,     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.

Link copied to clipboard
inline operator fun DoubleArray.component1(): Double
inline operator fun DoubleArray.component1(): Double
inline operator fun DoubleArray.component1(): Double

Returns 1st element from the array.

Link copied to clipboard
inline operator fun DoubleArray.component2(): Double
inline operator fun DoubleArray.component2(): Double
inline operator fun DoubleArray.component2(): Double

Returns 2nd element from the array.

Link copied to clipboard
inline operator fun DoubleArray.component3(): Double
inline operator fun DoubleArray.component3(): Double
inline operator fun DoubleArray.component3(): Double

Returns 3rd element from the array.

Link copied to clipboard
inline operator fun DoubleArray.component4(): Double
inline operator fun DoubleArray.component4(): Double
inline operator fun DoubleArray.component4(): Double

Returns 4th element from the array.

Link copied to clipboard
inline operator fun DoubleArray.component5(): Double
inline operator fun DoubleArray.component5(): Double
inline operator fun DoubleArray.component5(): Double

Returns 5th element from the array.

Link copied to clipboard
operator fun DoubleArray.contains(element: Double): Boolean
operator fun DoubleArray.contains(element: Double): Boolean
operator fun DoubleArray.contains(element: Double): Boolean

Returns true if element is found in the array.

Link copied to clipboard
expect infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
expect infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
expect infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
expect infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
expect infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
expect infix fun DoubleArray?.contentEquals(other: DoubleArray?): 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.

actual infix inline fun DoubleArray.contentEquals(other: DoubleArray): Boolean
@JvmName(name = "contentEqualsNullable")
actual infix inline fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
actual infix inline fun DoubleArray.contentEquals(other: DoubleArray): Boolean
@JvmName(name = "contentEqualsNullable")
actual infix inline fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
actual infix inline fun DoubleArray.contentEquals(other: DoubleArray): Boolean
@JvmName(name = "contentEqualsNullable")
actual infix inline fun DoubleArray?.contentEquals(other: DoubleArray?): 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.

actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
actual infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
actual infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
actual infix fun DoubleArray?.contentEquals(other: DoubleArray?): 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.

actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
actual infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
actual infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean
actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean
actual infix fun DoubleArray?.contentEquals(other: DoubleArray?): 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.

Link copied to clipboard

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

actual inline fun DoubleArray.contentHashCode(): Int
@JvmName(name = "contentHashCodeNullable")
actual inline fun DoubleArray?.contentHashCode(): Int
actual inline fun DoubleArray.contentHashCode(): Int
@JvmName(name = "contentHashCodeNullable")
actual inline fun DoubleArray?.contentHashCode(): Int
actual inline fun DoubleArray.contentHashCode(): Int
@JvmName(name = "contentHashCodeNullable")
actual inline fun DoubleArray?.contentHashCode(): Int

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

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

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

Link copied to clipboard

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

actual inline fun DoubleArray.contentToString(): String
@JvmName(name = "contentToStringNullable")
actual inline fun DoubleArray?.contentToString(): String
actual inline fun DoubleArray.contentToString(): String
@JvmName(name = "contentToStringNullable")
actual inline fun DoubleArray?.contentToString(): String
actual inline fun DoubleArray.contentToString(): String
@JvmName(name = "contentToStringNullable")
actual inline fun DoubleArray?.contentToString(): String

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

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

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

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

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

actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray

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

actual inline fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual inline fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual inline fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray

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

actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray

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

Link copied to clipboard

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

expect fun DoubleArray.copyOf(newSize: Int): DoubleArray
expect fun DoubleArray.copyOf(newSize: Int): DoubleArray
expect fun DoubleArray.copyOf(newSize: Int): DoubleArray

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.

actual inline fun DoubleArray.copyOf(): DoubleArray
actual inline fun DoubleArray.copyOf(): DoubleArray
actual inline fun DoubleArray.copyOf(): DoubleArray

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

actual inline fun DoubleArray.copyOf(newSize: Int): DoubleArray
actual inline fun DoubleArray.copyOf(newSize: Int): DoubleArray
actual inline fun DoubleArray.copyOf(newSize: Int): DoubleArray

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.

actual inline fun DoubleArray.copyOf(): DoubleArray
actual inline fun DoubleArray.copyOf(): DoubleArray
actual inline fun DoubleArray.copyOf(): DoubleArray

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

actual fun DoubleArray.copyOf(newSize: Int): DoubleArray
actual fun DoubleArray.copyOf(newSize: Int): DoubleArray
actual fun DoubleArray.copyOf(newSize: Int): DoubleArray

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.

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

actual fun DoubleArray.copyOf(newSize: Int): DoubleArray
actual fun DoubleArray.copyOf(newSize: Int): DoubleArray
actual fun DoubleArray.copyOf(newSize: Int): DoubleArray

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.

Link copied to clipboard
expect fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
expect fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
expect fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray

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

@JvmName(name = "copyOfRangeInline")
actual inline fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
@JvmName(name = "copyOfRangeInline")
actual inline fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
@JvmName(name = "copyOfRangeInline")
actual inline fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray

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

actual fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
actual fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
actual fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray

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

actual fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
actual fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray
actual fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray

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

Link copied to clipboard
inline fun DoubleArray.count(): Int
inline fun DoubleArray.count(): Int
inline fun DoubleArray.count(): Int

Returns the number of elements in this array.

inline fun DoubleArray.count(predicate: (Double) -> Boolean): Int
inline fun DoubleArray.count(predicate: (Double) -> Boolean): Int
inline fun DoubleArray.count(predicate: (Double) -> Boolean): Int

Returns the number of elements matching the given predicate.

Link copied to clipboard

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

Link copied to clipboard
inline fun <K> DoubleArray.distinctBy(selector: (Double) -> K): List<Double>
inline fun <K> DoubleArray.distinctBy(selector: (Double) -> K): List<Double>
inline fun <K> DoubleArray.distinctBy(selector: (Double) -> K): List<Double>

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

Link copied to clipboard

Returns a list containing all elements except first n elements.

Link copied to clipboard

Returns a list containing all elements except last n elements.

Link copied to clipboard
inline fun DoubleArray.dropLastWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.dropLastWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.dropLastWhile(predicate: (Double) -> Boolean): List<Double>

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

Link copied to clipboard
inline fun DoubleArray.dropWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.dropWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.dropWhile(predicate: (Double) -> Boolean): List<Double>

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

Link copied to clipboard
expect fun DoubleArray.elementAt(index: Int): Double
expect fun DoubleArray.elementAt(index: Int): Double
expect fun DoubleArray.elementAt(index: Int): Double

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

actual inline fun DoubleArray.elementAt(index: Int): Double
actual inline fun DoubleArray.elementAt(index: Int): Double
actual inline fun DoubleArray.elementAt(index: Int): Double

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

actual fun DoubleArray.elementAt(index: Int): Double
actual fun DoubleArray.elementAt(index: Int): Double
actual fun DoubleArray.elementAt(index: Int): Double

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

actual inline fun DoubleArray.elementAt(index: Int): Double
actual inline fun DoubleArray.elementAt(index: Int): Double
actual inline fun DoubleArray.elementAt(index: Int): Double

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

Link copied to clipboard
inline fun DoubleArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Double): Double
inline fun DoubleArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Double): Double
inline fun DoubleArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Double): Double

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.

Link copied to clipboard
inline fun DoubleArray.elementAtOrNull(index: Int): Double?
inline fun DoubleArray.elementAtOrNull(index: Int): Double?
inline fun DoubleArray.elementAtOrNull(index: Int): Double?

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

Link copied to clipboard
expect fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
expect fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
expect fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)

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

actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)

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

actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)

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

actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun DoubleArray.fill(    element: Double,     fromIndex: Int = 0,     toIndex: Int = size)

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

Link copied to clipboard
inline fun DoubleArray.filter(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.filter(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.filter(predicate: (Double) -> Boolean): List<Double>

Returns a list containing only elements matching the given predicate.

Link copied to clipboard
inline fun DoubleArray.filterIndexed(predicate: (index: Int, Double) -> Boolean): List<Double>
inline fun DoubleArray.filterIndexed(predicate: (index: Int, Double) -> Boolean): List<Double>
inline fun DoubleArray.filterIndexed(predicate: (index: Int, Double) -> Boolean): List<Double>

Returns a list containing only elements matching the given predicate.

Link copied to clipboard
inline fun <C : MutableCollection<in Double>> DoubleArray.filterIndexedTo(destination: C, predicate: (index: Int, Double) -> Boolean): C
inline fun <C : MutableCollection<in Double>> DoubleArray.filterIndexedTo(destination: C, predicate: (index: Int, Double) -> Boolean): C
inline fun <C : MutableCollection<in Double>> DoubleArray.filterIndexedTo(destination: C, predicate: (index: Int, Double) -> Boolean): C

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

Link copied to clipboard
inline fun DoubleArray.filterNot(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.filterNot(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.filterNot(predicate: (Double) -> Boolean): List<Double>

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

Link copied to clipboard
inline fun <C : MutableCollection<in Double>> DoubleArray.filterNotTo(destination: C, predicate: (Double) -> Boolean): C
inline fun <C : MutableCollection<in Double>> DoubleArray.filterNotTo(destination: C, predicate: (Double) -> Boolean): C
inline fun <C : MutableCollection<in Double>> DoubleArray.filterNotTo(destination: C, predicate: (Double) -> Boolean): C

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

Link copied to clipboard
inline fun <C : MutableCollection<in Double>> DoubleArray.filterTo(destination: C, predicate: (Double) -> Boolean): C
inline fun <C : MutableCollection<in Double>> DoubleArray.filterTo(destination: C, predicate: (Double) -> Boolean): C
inline fun <C : MutableCollection<in Double>> DoubleArray.filterTo(destination: C, predicate: (Double) -> Boolean): C

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

Link copied to clipboard
inline fun DoubleArray.find(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.find(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.find(predicate: (Double) -> Boolean): Double?

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

Link copied to clipboard
inline fun DoubleArray.findLast(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.findLast(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.findLast(predicate: (Double) -> Boolean): Double?

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

Link copied to clipboard

Returns first element.

inline fun DoubleArray.first(predicate: (Double) -> Boolean): Double
inline fun DoubleArray.first(predicate: (Double) -> Boolean): Double
inline fun DoubleArray.first(predicate: (Double) -> Boolean): Double

Returns the first element matching the given predicate.

Link copied to clipboard

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

inline fun DoubleArray.firstOrNull(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.firstOrNull(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.firstOrNull(predicate: (Double) -> Boolean): Double?

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

Link copied to clipboard
inline fun <R> DoubleArray.flatMap(transform: (Double) -> Iterable<R>): List<R>
inline fun <R> DoubleArray.flatMap(transform: (Double) -> Iterable<R>): List<R>
inline fun <R> DoubleArray.flatMap(transform: (Double) -> 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.

Link copied to clipboard
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> DoubleArray.flatMapIndexed(transform: (index: Int, Double) -> Iterable<R>): List<R>
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> DoubleArray.flatMapIndexed(transform: (index: Int, Double) -> Iterable<R>): List<R>
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> DoubleArray.flatMapIndexed(transform: (index: Int, Double) -> 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.

Link copied to clipboard
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> DoubleArray.flatMapIndexedTo(destination: C, transform: (index: Int, Double) -> Iterable<R>): C
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> DoubleArray.flatMapIndexedTo(destination: C, transform: (index: Int, Double) -> Iterable<R>): C
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> DoubleArray.flatMapIndexedTo(destination: C, transform: (index: Int, Double) -> 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.

Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> DoubleArray.flatMapTo(destination: C, transform: (Double) -> Iterable<R>): C
inline fun <R, C : MutableCollection<in R>> DoubleArray.flatMapTo(destination: C, transform: (Double) -> Iterable<R>): C
inline fun <R, C : MutableCollection<in R>> DoubleArray.flatMapTo(destination: C, transform: (Double) -> Iterable<R>): C

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

Link copied to clipboard
inline fun <R> DoubleArray.fold(initial: R, operation: (acc: R, Double) -> R): R
inline fun <R> DoubleArray.fold(initial: R, operation: (acc: R, Double) -> R): R
inline fun <R> DoubleArray.fold(initial: R, operation: (acc: R, Double) -> R): R

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

Link copied to clipboard
inline fun <R> DoubleArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Double) -> R): R
inline fun <R> DoubleArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Double) -> R): R
inline fun <R> DoubleArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Double) -> 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.

Link copied to clipboard
inline fun <R> DoubleArray.foldRight(initial: R, operation: (Double, acc: R) -> R): R
inline fun <R> DoubleArray.foldRight(initial: R, operation: (Double, acc: R) -> R): R
inline fun <R> DoubleArray.foldRight(initial: R, operation: (Double, acc: R) -> R): R

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

Link copied to clipboard
inline fun <R> DoubleArray.foldRightIndexed(initial: R, operation: (index: Int, Double, acc: R) -> R): R
inline fun <R> DoubleArray.foldRightIndexed(initial: R, operation: (index: Int, Double, acc: R) -> R): R
inline fun <R> DoubleArray.foldRightIndexed(initial: R, operation: (index: Int, Double, 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.

Link copied to clipboard
inline fun DoubleArray.forEach(action: (Double) -> Unit)
inline fun DoubleArray.forEach(action: (Double) -> Unit)
inline fun DoubleArray.forEach(action: (Double) -> Unit)

Performs the given action on each element.

Link copied to clipboard
inline fun DoubleArray.forEachIndexed(action: (index: Int, Double) -> Unit)
inline fun DoubleArray.forEachIndexed(action: (index: Int, Double) -> Unit)
inline fun DoubleArray.forEachIndexed(action: (index: Int, Double) -> Unit)

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

Link copied to clipboard
inline fun DoubleArray.getOrElse(index: Int, defaultValue: (Int) -> Double): Double
inline fun DoubleArray.getOrElse(index: Int, defaultValue: (Int) -> Double): Double
inline fun DoubleArray.getOrElse(index: Int, defaultValue: (Int) -> Double): Double

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.

Link copied to clipboard

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

Link copied to clipboard
inline fun <K> DoubleArray.groupBy(keySelector: (Double) -> K): Map<K, List<Double>>
inline fun <K> DoubleArray.groupBy(keySelector: (Double) -> K): Map<K, List<Double>>
inline fun <K> DoubleArray.groupBy(keySelector: (Double) -> K): Map<K, List<Double>>

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.

inline fun <K, V> DoubleArray.groupBy(keySelector: (Double) -> K, valueTransform: (Double) -> V): Map<K, List<V>>
inline fun <K, V> DoubleArray.groupBy(keySelector: (Double) -> K, valueTransform: (Double) -> V): Map<K, List<V>>
inline fun <K, V> DoubleArray.groupBy(keySelector: (Double) -> K, valueTransform: (Double) -> 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.

Link copied to clipboard
inline fun <K, M : MutableMap<in K, MutableList<Double>>> DoubleArray.groupByTo(destination: M, keySelector: (Double) -> K): M
inline fun <K, M : MutableMap<in K, MutableList<Double>>> DoubleArray.groupByTo(destination: M, keySelector: (Double) -> K): M
inline fun <K, M : MutableMap<in K, MutableList<Double>>> DoubleArray.groupByTo(destination: M, keySelector: (Double) -> 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.

inline fun <K, V, M : MutableMap<in K, MutableList<V>>> DoubleArray.groupByTo(    destination: M,     keySelector: (Double) -> K,     valueTransform: (Double) -> V): M
inline fun <K, V, M : MutableMap<in K, MutableList<V>>> DoubleArray.groupByTo(    destination: M,     keySelector: (Double) -> K,     valueTransform: (Double) -> V): M
inline fun <K, V, M : MutableMap<in K, MutableList<V>>> DoubleArray.groupByTo(    destination: M,     keySelector: (Double) -> K,     valueTransform: (Double) -> 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.

Link copied to clipboard
fun DoubleArray.indexOf(element: Double): Int
fun DoubleArray.indexOf(element: Double): Int
fun DoubleArray.indexOf(element: Double): Int

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

Link copied to clipboard
inline fun DoubleArray.indexOfFirst(predicate: (Double) -> Boolean): Int
inline fun DoubleArray.indexOfFirst(predicate: (Double) -> Boolean): Int
inline fun DoubleArray.indexOfFirst(predicate: (Double) -> Boolean): Int

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

Link copied to clipboard
inline fun DoubleArray.indexOfLast(predicate: (Double) -> Boolean): Int
inline fun DoubleArray.indexOfLast(predicate: (Double) -> Boolean): Int
inline fun DoubleArray.indexOfLast(predicate: (Double) -> Boolean): Int

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

Link copied to clipboard

Returns the range of valid indices for the array.

Link copied to clipboard

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

Link copied to clipboard

Returns true if the array is empty.

Link copied to clipboard

Returns true if the array is not empty.

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

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

Link copied to clipboard
fun DoubleArray.joinToString(    separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Double) -> CharSequence? = null): String
fun DoubleArray.joinToString(    separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Double) -> CharSequence? = null): String
fun DoubleArray.joinToString(    separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Double) -> CharSequence? = null): String

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

Link copied to clipboard

Returns the last element.

inline fun DoubleArray.last(predicate: (Double) -> Boolean): Double
inline fun DoubleArray.last(predicate: (Double) -> Boolean): Double
inline fun DoubleArray.last(predicate: (Double) -> Boolean): Double

Returns the last element matching the given predicate.

Link copied to clipboard

Returns the last valid index for the array.

Link copied to clipboard

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

Link copied to clipboard

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

inline fun DoubleArray.lastOrNull(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.lastOrNull(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.lastOrNull(predicate: (Double) -> Boolean): Double?

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

Link copied to clipboard
inline fun <R> DoubleArray.map(transform: (Double) -> R): List<R>
inline fun <R> DoubleArray.map(transform: (Double) -> R): List<R>
inline fun <R> DoubleArray.map(transform: (Double) -> R): List<R>

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

Link copied to clipboard
inline fun <R> DoubleArray.mapIndexed(transform: (index: Int, Double) -> R): List<R>
inline fun <R> DoubleArray.mapIndexed(transform: (index: Int, Double) -> R): List<R>
inline fun <R> DoubleArray.mapIndexed(transform: (index: Int, Double) -> 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.

Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> DoubleArray.mapIndexedTo(destination: C, transform: (index: Int, Double) -> R): C
inline fun <R, C : MutableCollection<in R>> DoubleArray.mapIndexedTo(destination: C, transform: (index: Int, Double) -> R): C
inline fun <R, C : MutableCollection<in R>> DoubleArray.mapIndexedTo(destination: C, transform: (index: Int, Double) -> 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.

Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> DoubleArray.mapTo(destination: C, transform: (Double) -> R): C
inline fun <R, C : MutableCollection<in R>> DoubleArray.mapTo(destination: C, transform: (Double) -> R): C
inline fun <R, C : MutableCollection<in R>> DoubleArray.mapTo(destination: C, transform: (Double) -> R): C

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

Link copied to clipboard
Link copied to clipboard
inline fun <R : Comparable<R>> DoubleArray.maxBy(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.maxBy(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.maxBy(selector: (Double) -> R): Double?
Link copied to clipboard
inline fun <R : Comparable<R>> DoubleArray.maxByOrNull(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.maxByOrNull(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.maxByOrNull(selector: (Double) -> R): Double?

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

Link copied to clipboard
inline fun DoubleArray.maxOf(selector: (Double) -> Double): Double
inline fun DoubleArray.maxOf(selector: (Double) -> Float): Float
inline fun <R : Comparable<R>> DoubleArray.maxOf(selector: (Double) -> R): R
inline fun DoubleArray.maxOf(selector: (Double) -> Double): Double
inline fun DoubleArray.maxOf(selector: (Double) -> Float): Float
inline fun <R : Comparable<R>> DoubleArray.maxOf(selector: (Double) -> R): R
inline fun DoubleArray.maxOf(selector: (Double) -> Double): Double
inline fun DoubleArray.maxOf(selector: (Double) -> Float): Float
inline fun <R : Comparable<R>> DoubleArray.maxOf(selector: (Double) -> R): R

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

Link copied to clipboard
inline fun DoubleArray.maxOfOrNull(selector: (Double) -> Double): Double?
inline fun DoubleArray.maxOfOrNull(selector: (Double) -> Float): Float?
inline fun <R : Comparable<R>> DoubleArray.maxOfOrNull(selector: (Double) -> R): R?
inline fun DoubleArray.maxOfOrNull(selector: (Double) -> Double): Double?
inline fun DoubleArray.maxOfOrNull(selector: (Double) -> Float): Float?
inline fun <R : Comparable<R>> DoubleArray.maxOfOrNull(selector: (Double) -> R): R?
inline fun DoubleArray.maxOfOrNull(selector: (Double) -> Double): Double?
inline fun DoubleArray.maxOfOrNull(selector: (Double) -> Float): Float?
inline fun <R : Comparable<R>> DoubleArray.maxOfOrNull(selector: (Double) -> R): R?

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.

Link copied to clipboard
inline fun <R> DoubleArray.maxOfWith(comparator: Comparator<in R>, selector: (Double) -> R): R
inline fun <R> DoubleArray.maxOfWith(comparator: Comparator<in R>, selector: (Double) -> R): R
inline fun <R> DoubleArray.maxOfWith(comparator: Comparator<in R>, selector: (Double) -> 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.

Link copied to clipboard
inline fun <R> DoubleArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Double) -> R): R?
inline fun <R> DoubleArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Double) -> R): R?
inline fun <R> DoubleArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Double) -> 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.

Link copied to clipboard

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

Link copied to clipboard
fun DoubleArray.maxWith(comparator: Comparator<in Double>): Double?
fun DoubleArray.maxWith(comparator: Comparator<in Double>): Double?
fun DoubleArray.maxWith(comparator: Comparator<in Double>): Double?
Link copied to clipboard

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

Link copied to clipboard
Link copied to clipboard
inline fun <R : Comparable<R>> DoubleArray.minBy(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.minBy(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.minBy(selector: (Double) -> R): Double?
Link copied to clipboard
inline fun <R : Comparable<R>> DoubleArray.minByOrNull(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.minByOrNull(selector: (Double) -> R): Double?
inline fun <R : Comparable<R>> DoubleArray.minByOrNull(selector: (Double) -> R): Double?

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

Link copied to clipboard
inline fun DoubleArray.minOf(selector: (Double) -> Double): Double
inline fun DoubleArray.minOf(selector: (Double) -> Float): Float
inline fun <R : Comparable<R>> DoubleArray.minOf(selector: (Double) -> R): R
inline fun DoubleArray.minOf(selector: (Double) -> Double): Double
inline fun DoubleArray.minOf(selector: (Double) -> Float): Float
inline fun <R : Comparable<R>> DoubleArray.minOf(selector: (Double) -> R): R
inline fun DoubleArray.minOf(selector: (Double) -> Double): Double
inline fun DoubleArray.minOf(selector: (Double) -> Float): Float
inline fun <R : Comparable<R>> DoubleArray.minOf(selector: (Double) -> R): R

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

Link copied to clipboard
inline fun DoubleArray.minOfOrNull(selector: (Double) -> Double): Double?
inline fun DoubleArray.minOfOrNull(selector: (Double) -> Float): Float?
inline fun <R : Comparable<R>> DoubleArray.minOfOrNull(selector: (Double) -> R): R?
inline fun DoubleArray.minOfOrNull(selector: (Double) -> Double): Double?
inline fun DoubleArray.minOfOrNull(selector: (Double) -> Float): Float?
inline fun <R : Comparable<R>> DoubleArray.minOfOrNull(selector: (Double) -> R): R?
inline fun DoubleArray.minOfOrNull(selector: (Double) -> Double): Double?
inline fun DoubleArray.minOfOrNull(selector: (Double) -> Float): Float?
inline fun <R : Comparable<R>> DoubleArray.minOfOrNull(selector: (Double) -> R): R?

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.

Link copied to clipboard
inline fun <R> DoubleArray.minOfWith(comparator: Comparator<in R>, selector: (Double) -> R): R
inline fun <R> DoubleArray.minOfWith(comparator: Comparator<in R>, selector: (Double) -> R): R
inline fun <R> DoubleArray.minOfWith(comparator: Comparator<in R>, selector: (Double) -> 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.

Link copied to clipboard
inline fun <R> DoubleArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Double) -> R): R?
inline fun <R> DoubleArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Double) -> R): R?
inline fun <R> DoubleArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Double) -> 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.

Link copied to clipboard

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

Link copied to clipboard
fun DoubleArray.minWith(comparator: Comparator<in Double>): Double?
fun DoubleArray.minWith(comparator: Comparator<in Double>): Double?
fun DoubleArray.minWith(comparator: Comparator<in Double>): Double?
Link copied to clipboard

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

Link copied to clipboard

Returns true if the array has no elements.

inline fun DoubleArray.none(predicate: (Double) -> Boolean): Boolean
inline fun DoubleArray.none(predicate: (Double) -> Boolean): Boolean
inline fun DoubleArray.none(predicate: (Double) -> Boolean): Boolean

Returns true if no elements match the given predicate.

Link copied to clipboard
inline fun DoubleArray.onEach(action: (Double) -> Unit): DoubleArray
inline fun DoubleArray.onEach(action: (Double) -> Unit): DoubleArray
inline fun DoubleArray.onEach(action: (Double) -> Unit): DoubleArray

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

Link copied to clipboard
inline fun DoubleArray.onEachIndexed(action: (index: Int, Double) -> Unit): DoubleArray
inline fun DoubleArray.onEachIndexed(action: (index: Int, Double) -> Unit): DoubleArray
inline fun DoubleArray.onEachIndexed(action: (index: Int, Double) -> Unit): DoubleArray

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

Link copied to clipboard
inline fun DoubleArray.partition(predicate: (Double) -> Boolean): Pair<List<Double>, List<Double>>
inline fun DoubleArray.partition(predicate: (Double) -> Boolean): Pair<List<Double>, List<Double>>
inline fun DoubleArray.partition(predicate: (Double) -> Boolean): Pair<List<Double>, List<Double>>

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.

Link copied to clipboard
expect operator fun DoubleArray.plus(element: Double): DoubleArray
expect operator fun DoubleArray.plus(element: Double): DoubleArray
expect operator fun DoubleArray.plus(element: Double): DoubleArray

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

expect operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
expect operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
expect operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray

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

expect operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
expect operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
expect operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray

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

actual operator fun DoubleArray.plus(element: Double): DoubleArray
actual operator fun DoubleArray.plus(element: Double): DoubleArray
actual operator fun DoubleArray.plus(element: Double): DoubleArray

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

actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray

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

actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray

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

actual inline operator fun DoubleArray.plus(element: Double): DoubleArray
actual inline operator fun DoubleArray.plus(element: Double): DoubleArray
actual inline operator fun DoubleArray.plus(element: Double): DoubleArray

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

actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray

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

actual inline operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
actual inline operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
actual inline operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray

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

actual operator fun DoubleArray.plus(element: Double): DoubleArray
actual operator fun DoubleArray.plus(element: Double): DoubleArray
actual operator fun DoubleArray.plus(element: Double): DoubleArray

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

actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray
actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray

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

actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray
actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray

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

Link copied to clipboard
inline fun DoubleArray.random(): Double
inline fun DoubleArray.random(): Double
inline fun DoubleArray.random(): Double

Returns a random element from this array.

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

Link copied to clipboard

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

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

Link copied to clipboard
inline fun DoubleArray.reduce(operation: (acc: Double, Double) -> Double): Double
inline fun DoubleArray.reduce(operation: (acc: Double, Double) -> Double): Double
inline fun DoubleArray.reduce(operation: (acc: Double, Double) -> Double): Double

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

Link copied to clipboard
inline fun DoubleArray.reduceIndexed(operation: (index: Int, acc: Double, Double) -> Double): Double
inline fun DoubleArray.reduceIndexed(operation: (index: Int, acc: Double, Double) -> Double): Double
inline fun DoubleArray.reduceIndexed(operation: (index: Int, acc: Double, Double) -> Double): Double

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.

Link copied to clipboard
inline fun DoubleArray.reduceIndexedOrNull(operation: (index: Int, acc: Double, Double) -> Double): Double?
inline fun DoubleArray.reduceIndexedOrNull(operation: (index: Int, acc: Double, Double) -> Double): Double?
inline fun DoubleArray.reduceIndexedOrNull(operation: (index: Int, acc: Double, Double) -> Double): Double?

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.

Link copied to clipboard
inline fun DoubleArray.reduceOrNull(operation: (acc: Double, Double) -> Double): Double?
inline fun DoubleArray.reduceOrNull(operation: (acc: Double, Double) -> Double): Double?
inline fun DoubleArray.reduceOrNull(operation: (acc: Double, Double) -> Double): Double?

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

Link copied to clipboard
inline fun DoubleArray.reduceRight(operation: (Double, acc: Double) -> Double): Double
inline fun DoubleArray.reduceRight(operation: (Double, acc: Double) -> Double): Double
inline fun DoubleArray.reduceRight(operation: (Double, acc: Double) -> Double): Double

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

Link copied to clipboard
inline fun DoubleArray.reduceRightIndexed(operation: (index: Int, Double, acc: Double) -> Double): Double
inline fun DoubleArray.reduceRightIndexed(operation: (index: Int, Double, acc: Double) -> Double): Double
inline fun DoubleArray.reduceRightIndexed(operation: (index: Int, Double, acc: Double) -> Double): Double

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.

Link copied to clipboard
inline fun DoubleArray.reduceRightIndexedOrNull(operation: (index: Int, Double, acc: Double) -> Double): Double?
inline fun DoubleArray.reduceRightIndexedOrNull(operation: (index: Int, Double, acc: Double) -> Double): Double?
inline fun DoubleArray.reduceRightIndexedOrNull(operation: (index: Int, Double, acc: Double) -> Double): Double?

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.

Link copied to clipboard
inline fun DoubleArray.reduceRightOrNull(operation: (Double, acc: Double) -> Double): Double?
inline fun DoubleArray.reduceRightOrNull(operation: (Double, acc: Double) -> Double): Double?
inline fun DoubleArray.reduceRightOrNull(operation: (Double, acc: Double) -> Double): Double?

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

Link copied to clipboard
Link copied to clipboard

Reverses elements in the array in-place.

fun DoubleArray.reverse(fromIndex: Int, toIndex: Int)
fun DoubleArray.reverse(fromIndex: Int, toIndex: Int)
fun DoubleArray.reverse(fromIndex: Int, toIndex: Int)

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

Link copied to clipboard

Returns a list with elements in reversed order.

Link copied to clipboard

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

Link copied to clipboard
inline fun <R> DoubleArray.runningFold(initial: R, operation: (acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.runningFold(initial: R, operation: (acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.runningFold(initial: R, operation: (acc: R, Double) -> 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.

Link copied to clipboard
inline fun <R> DoubleArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Double) -> 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.

Link copied to clipboard
inline fun DoubleArray.runningReduce(operation: (acc: Double, Double) -> Double): List<Double>
inline fun DoubleArray.runningReduce(operation: (acc: Double, Double) -> Double): List<Double>
inline fun DoubleArray.runningReduce(operation: (acc: Double, Double) -> Double): List<Double>

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.

Link copied to clipboard
inline fun DoubleArray.runningReduceIndexed(operation: (index: Int, acc: Double, Double) -> Double): List<Double>
inline fun DoubleArray.runningReduceIndexed(operation: (index: Int, acc: Double, Double) -> Double): List<Double>
inline fun DoubleArray.runningReduceIndexed(operation: (index: Int, acc: Double, Double) -> Double): List<Double>

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.

Link copied to clipboard
inline fun <R> DoubleArray.scan(initial: R, operation: (acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.scan(initial: R, operation: (acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.scan(initial: R, operation: (acc: R, Double) -> 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.

Link copied to clipboard
inline fun <R> DoubleArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Double) -> R): List<R>
inline fun <R> DoubleArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Double) -> 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.

Link copied to clipboard

Randomly shuffles elements in this array in-place.

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

Link copied to clipboard

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

inline fun DoubleArray.single(predicate: (Double) -> Boolean): Double
inline fun DoubleArray.single(predicate: (Double) -> Boolean): Double
inline fun DoubleArray.single(predicate: (Double) -> Boolean): Double

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

Link copied to clipboard

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

inline fun DoubleArray.singleOrNull(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.singleOrNull(predicate: (Double) -> Boolean): Double?
inline fun DoubleArray.singleOrNull(predicate: (Double) -> Boolean): Double?

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

Link copied to clipboard

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

Returns a list containing elements at specified indices.

Link copied to clipboard

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

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

Link copied to clipboard
expect fun DoubleArray.sort()
expect fun DoubleArray.sort()
expect fun DoubleArray.sort()

Sorts the array in-place.

expect fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
expect fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
expect fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

actual fun DoubleArray.sort()
actual fun DoubleArray.sort()
actual fun DoubleArray.sort()

Sorts the array in-place.

actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

inline fun DoubleArray.sort(noinline comparison: (a: Double, b: Double) -> Int)
inline fun DoubleArray.sort(noinline comparison: (a: Double, b: Double) -> Int)
inline fun DoubleArray.sort(noinline comparison: (a: Double, b: Double) -> Int)

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

actual fun DoubleArray.sort()
actual fun DoubleArray.sort()
actual fun DoubleArray.sort()

Sorts the array in-place.

actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

actual fun DoubleArray.sort()
actual fun DoubleArray.sort()
actual fun DoubleArray.sort()

Sorts the array in-place.

actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Link copied to clipboard

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

fun DoubleArray.sortDescending(fromIndex: Int, toIndex: Int)
fun DoubleArray.sortDescending(fromIndex: Int, toIndex: Int)
fun DoubleArray.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.

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard
inline fun <R : Comparable<R>> DoubleArray.sortedBy(crossinline selector: (Double) -> R?): List<Double>
inline fun <R : Comparable<R>> DoubleArray.sortedBy(crossinline selector: (Double) -> R?): List<Double>
inline fun <R : Comparable<R>> DoubleArray.sortedBy(crossinline selector: (Double) -> R?): List<Double>

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

Link copied to clipboard
inline fun <R : Comparable<R>> DoubleArray.sortedByDescending(crossinline selector: (Double) -> R?): List<Double>
inline fun <R : Comparable<R>> DoubleArray.sortedByDescending(crossinline selector: (Double) -> R?): List<Double>
inline fun <R : Comparable<R>> DoubleArray.sortedByDescending(crossinline selector: (Double) -> R?): List<Double>

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

Returns the sum of all elements in the array.

Link copied to clipboard
inline fun DoubleArray.sumBy(selector: (Double) -> Int): Int
inline fun DoubleArray.sumBy(selector: (Double) -> Int): Int
inline fun DoubleArray.sumBy(selector: (Double) -> Int): Int

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

Link copied to clipboard
inline fun DoubleArray.sumByDouble(selector: (Double) -> Double): Double
inline fun DoubleArray.sumByDouble(selector: (Double) -> Double): Double
inline fun DoubleArray.sumByDouble(selector: (Double) -> Double): Double

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

Link copied to clipboard
@JvmName(name = "sumOfDouble")
inline fun DoubleArray.sumOf(selector: (Double) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun DoubleArray.sumOf(selector: (Double) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun DoubleArray.sumOf(selector: (Double) -> Long): Long
@JvmName(name = "sumOfUInt")
inline fun DoubleArray.sumOf(selector: (Double) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun DoubleArray.sumOf(selector: (Double) -> ULong): ULong
@JvmName(name = "sumOfDouble")
inline fun DoubleArray.sumOf(selector: (Double) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun DoubleArray.sumOf(selector: (Double) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun DoubleArray.sumOf(selector: (Double) -> Long): Long
@JvmName(name = "sumOfUInt")
inline fun DoubleArray.sumOf(selector: (Double) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun DoubleArray.sumOf(selector: (Double) -> ULong): ULong
@JvmName(name = "sumOfDouble")
inline fun DoubleArray.sumOf(selector: (Double) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun DoubleArray.sumOf(selector: (Double) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun DoubleArray.sumOf(selector: (Double) -> Long): Long
@JvmName(name = "sumOfUInt")
inline fun DoubleArray.sumOf(selector: (Double) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun DoubleArray.sumOf(selector: (Double) -> ULong): ULong

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

@JvmName(name = "sumOfBigDecimal")
inline fun DoubleArray.sumOf(selector: (Double) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun DoubleArray.sumOf(selector: (Double) -> BigInteger): BigInteger
@JvmName(name = "sumOfBigDecimal")
inline fun DoubleArray.sumOf(selector: (Double) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun DoubleArray.sumOf(selector: (Double) -> BigInteger): BigInteger
@JvmName(name = "sumOfBigDecimal")
inline fun DoubleArray.sumOf(selector: (Double) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun DoubleArray.sumOf(selector: (Double) -> BigInteger): BigInteger

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

Link copied to clipboard

Returns a list containing first n elements.

Link copied to clipboard

Returns a list containing last n elements.

Link copied to clipboard
inline fun DoubleArray.takeLastWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.takeLastWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.takeLastWhile(predicate: (Double) -> Boolean): List<Double>

Returns a list containing last elements satisfying the given predicate.

Link copied to clipboard
inline fun DoubleArray.takeWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.takeWhile(predicate: (Double) -> Boolean): List<Double>
inline fun DoubleArray.takeWhile(predicate: (Double) -> Boolean): List<Double>

Returns a list containing first elements satisfying the given predicate.

Link copied to clipboard
fun <C : MutableCollection<in Double>> DoubleArray.toCollection(destination: C): C
fun <C : MutableCollection<in Double>> DoubleArray.toCollection(destination: C): C
fun <C : MutableCollection<in Double>> DoubleArray.toCollection(destination: C): C

Appends all elements to the given destination collection.

Link copied to clipboard
Link copied to clipboard

Returns a List containing all elements.

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard

Returns a Set of all elements.

Link copied to clipboard
Link copied to clipboard

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

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

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

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

Link copied to clipboard
infix fun DoubleArray.union(other: Iterable<Double>): Set<Double>
infix fun DoubleArray.union(other: Iterable<Double>): Set<Double>
infix fun DoubleArray.union(other: Iterable<Double>): Set<Double>

Returns a set containing all distinct elements from both collections.

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.

Link copied to clipboard
infix fun <R> DoubleArray.zip(other: Array<out R>): List<Pair<Double, R>>
infix fun <R> DoubleArray.zip(other: Array<out R>): List<Pair<Double, R>>
infix fun <R> DoubleArray.zip(other: Array<out R>): List<Pair<Double, R>>

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.

inline fun <R, V> DoubleArray.zip(other: Array<out R>, transform: (a: Double, b: R) -> V): List<V>
inline fun <R, V> DoubleArray.zip(other: Array<out R>, transform: (a: Double, b: R) -> V): List<V>
inline fun <R, V> DoubleArray.zip(other: Array<out R>, transform: (a: Double, 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.

infix fun <R> DoubleArray.zip(other: Iterable<R>): List<Pair<Double, R>>
infix fun <R> DoubleArray.zip(other: Iterable<R>): List<Pair<Double, R>>
infix fun <R> DoubleArray.zip(other: Iterable<R>): List<Pair<Double, 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.

inline fun <R, V> DoubleArray.zip(other: Iterable<R>, transform: (a: Double, b: R) -> V): List<V>
inline fun <R, V> DoubleArray.zip(other: Iterable<R>, transform: (a: Double, b: R) -> V): List<V>
inline fun <R, V> DoubleArray.zip(other: Iterable<R>, transform: (a: Double, 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.

inline fun <V> DoubleArray.zip(other: DoubleArray, transform: (a: Double, b: Double) -> V): List<V>
inline fun <V> DoubleArray.zip(other: DoubleArray, transform: (a: Double, b: Double) -> V): List<V>
inline fun <V> DoubleArray.zip(other: DoubleArray, transform: (a: Double, b: Double) -> 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.