3024 lines
117 KiB
Kotlin
3024 lines
117 KiB
Kotlin
/*
|
|
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
@file:kotlin.jvm.JvmMultifileClass
|
|
@file:kotlin.jvm.JvmName("ArraysKt")
|
|
|
|
package kotlin.collections
|
|
|
|
//
|
|
// NOTE: THIS FILE IS AUTO-GENERATED by the GenerateStandardLib.kt
|
|
// See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib
|
|
//
|
|
|
|
import kotlin.ranges.contains
|
|
import kotlin.ranges.reversed
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>.elementAt(index: Int): T {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray.elementAt(index: Int): Byte {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray.elementAt(index: Int): Short {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray.elementAt(index: Int): Int {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray.elementAt(index: Int): Long {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray.elementAt(index: Int): Float {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray.elementAt(index: Int): Double {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray.elementAt(index: Int): Boolean {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this array.
|
|
*
|
|
* @sample samples.collections.Collections.Elements.elementAt
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray.elementAt(index: Int): Char {
|
|
return get(index)
|
|
}
|
|
|
|
/**
|
|
* Returns a list containing all elements that are instances of specified class.
|
|
*
|
|
* @sample samples.collections.Collections.Filtering.filterIsInstanceJVM
|
|
*/
|
|
public fun <R> Array<*>.filterIsInstance(klass: Class<R>): List<R> {
|
|
return filterIsInstanceTo(ArrayList<R>(), klass)
|
|
}
|
|
|
|
/**
|
|
* Appends all elements that are instances of specified class to the given [destination].
|
|
*
|
|
* @sample samples.collections.Collections.Filtering.filterIsInstanceToJVM
|
|
*/
|
|
public fun <C : MutableCollection<in R>, R> Array<*>.filterIsInstanceTo(destination: C, klass: Class<R>): C {
|
|
@Suppress("UNCHECKED_CAST")
|
|
for (element in this) if (klass.isInstance(element)) destination.add(element as R)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun <T> Array<out T>.asList(): List<T> {
|
|
return ArraysUtilJVM.asList(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun ByteArray.asList(): List<Byte> {
|
|
return object : AbstractList<Byte>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Byte): Boolean = this@asList.contains(element)
|
|
override fun get(index: Int): Byte = this@asList[index]
|
|
override fun indexOf(element: Byte): Int = this@asList.indexOf(element)
|
|
override fun lastIndexOf(element: Byte): Int = this@asList.lastIndexOf(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun ShortArray.asList(): List<Short> {
|
|
return object : AbstractList<Short>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Short): Boolean = this@asList.contains(element)
|
|
override fun get(index: Int): Short = this@asList[index]
|
|
override fun indexOf(element: Short): Int = this@asList.indexOf(element)
|
|
override fun lastIndexOf(element: Short): Int = this@asList.lastIndexOf(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun IntArray.asList(): List<Int> {
|
|
return object : AbstractList<Int>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Int): Boolean = this@asList.contains(element)
|
|
override fun get(index: Int): Int = this@asList[index]
|
|
override fun indexOf(element: Int): Int = this@asList.indexOf(element)
|
|
override fun lastIndexOf(element: Int): Int = this@asList.lastIndexOf(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun LongArray.asList(): List<Long> {
|
|
return object : AbstractList<Long>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Long): Boolean = this@asList.contains(element)
|
|
override fun get(index: Int): Long = this@asList[index]
|
|
override fun indexOf(element: Long): Int = this@asList.indexOf(element)
|
|
override fun lastIndexOf(element: Long): Int = this@asList.lastIndexOf(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun FloatArray.asList(): List<Float> {
|
|
return object : AbstractList<Float>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Float): Boolean = this@asList.any { it.toBits() == element.toBits() }
|
|
override fun get(index: Int): Float = this@asList[index]
|
|
override fun indexOf(element: Float): Int = this@asList.indexOfFirst { it.toBits() == element.toBits() }
|
|
override fun lastIndexOf(element: Float): Int = this@asList.indexOfLast { it.toBits() == element.toBits() }
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun DoubleArray.asList(): List<Double> {
|
|
return object : AbstractList<Double>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Double): Boolean = this@asList.any { it.toBits() == element.toBits() }
|
|
override fun get(index: Int): Double = this@asList[index]
|
|
override fun indexOf(element: Double): Int = this@asList.indexOfFirst { it.toBits() == element.toBits() }
|
|
override fun lastIndexOf(element: Double): Int = this@asList.indexOfLast { it.toBits() == element.toBits() }
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun BooleanArray.asList(): List<Boolean> {
|
|
return object : AbstractList<Boolean>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Boolean): Boolean = this@asList.contains(element)
|
|
override fun get(index: Int): Boolean = this@asList[index]
|
|
override fun indexOf(element: Boolean): Int = this@asList.indexOf(element)
|
|
override fun lastIndexOf(element: Boolean): Int = this@asList.lastIndexOf(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a [List] that wraps the original array.
|
|
*/
|
|
public actual fun CharArray.asList(): List<Char> {
|
|
return object : AbstractList<Char>(), RandomAccess {
|
|
override val size: Int get() = this@asList.size
|
|
override fun isEmpty(): Boolean = this@asList.isEmpty()
|
|
override fun contains(element: Char): Boolean = this@asList.contains(element)
|
|
override fun get(index: Int): Char = this@asList[index]
|
|
override fun indexOf(element: Char): Int = this@asList.indexOf(element)
|
|
override fun lastIndexOf(element: Char): Int = this@asList.lastIndexOf(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Searches the array or the range of the array for the provided [element] using the binary search algorithm.
|
|
* The array is expected to be sorted according to the specified [comparator], otherwise the result is undefined.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the element to search for.
|
|
* @param comparator the comparator according to which this array is sorted.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted according to the specified [comparator].
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun <T> Array<out T>.binarySearch(element: T, comparator: Comparator<in T>, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element, comparator)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun <T> Array<out T>.binarySearch(element: T, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun ByteArray.binarySearch(element: Byte, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun ShortArray.binarySearch(element: Short, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun IntArray.binarySearch(element: Int, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun LongArray.binarySearch(element: Long, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun FloatArray.binarySearch(element: Float, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun DoubleArray.binarySearch(element: Double, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* If the array contains multiple elements equal to the specified [element], there is no guarantee which one will be found.
|
|
*
|
|
* @param element the to search for.
|
|
* @param fromIndex the start of the range (inclusive) to search in, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to search in, size of this array by default.
|
|
*
|
|
* @return the index of the element, if it is contained in the array within the specified range;
|
|
* otherwise, the inverted insertion point `(-insertion point - 1)`.
|
|
* The insertion point is defined as the index at which the element should be inserted,
|
|
* so that the array (or the specified subrange of array) still remains sorted.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
public fun CharArray.binarySearch(element: Char, fromIndex: Int = 0, toIndex: Int = size): Int {
|
|
return java.util.Arrays.binarySearch(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Returns `true` if the two specified arrays are *deeply* equal to one another,
|
|
* i.e. contain the same number of the same elements in the same order.
|
|
*
|
|
* If two corresponding elements are nested arrays, they are also compared deeply.
|
|
* If any of arrays contains itself on any nesting level the behavior is undefined.
|
|
*
|
|
* The elements of other types are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.1")
|
|
@kotlin.internal.LowPriorityInOverloadResolution
|
|
@JvmName("contentDeepEqualsInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun <T> Array<out T>.contentDeepEquals(other: Array<out T>): Boolean {
|
|
return this.contentDeepEquals(other)
|
|
}
|
|
|
|
/**
|
|
* Returns `true` if the two specified arrays are *deeply* equal to one another,
|
|
* i.e. contain the same number of the same elements in the same order.
|
|
*
|
|
* The specified arrays are also considered deeply equal if both are `null`.
|
|
*
|
|
* If two corresponding elements are nested arrays, they are also compared deeply.
|
|
* If any of arrays contains itself on any nesting level the behavior is undefined.
|
|
*
|
|
* The elements of other types are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentDeepEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun <T> Array<out T>?.contentDeepEquals(other: Array<out T>?): Boolean {
|
|
if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0))
|
|
return contentDeepEqualsImpl(other)
|
|
else
|
|
return java.util.Arrays.deepEquals(this, other)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
* Nested arrays are treated as lists too.
|
|
*
|
|
* If any of arrays contains itself on any nesting level the behavior is undefined.
|
|
*/
|
|
@SinceKotlin("1.1")
|
|
@kotlin.internal.LowPriorityInOverloadResolution
|
|
@JvmName("contentDeepHashCodeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>.contentDeepHashCode(): Int {
|
|
return this.contentDeepHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
* Nested arrays are treated as lists too.
|
|
*
|
|
* If any of arrays contains itself on any nesting level the behavior is undefined.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentDeepHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>?.contentDeepHashCode(): Int {
|
|
if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0))
|
|
return contentDeepHashCodeImpl()
|
|
else
|
|
return java.util.Arrays.deepHashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of this array as if it is a [List].
|
|
* Nested arrays are treated as lists too.
|
|
*
|
|
* If any of arrays contains itself on any nesting level that reference
|
|
* is rendered as `"[...]"` to prevent recursion.
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentDeepToString
|
|
*/
|
|
@SinceKotlin("1.1")
|
|
@kotlin.internal.LowPriorityInOverloadResolution
|
|
@JvmName("contentDeepToStringInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>.contentDeepToString(): String {
|
|
return this.contentDeepToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of this array as if it is a [List].
|
|
* Nested arrays are treated as lists too.
|
|
*
|
|
* If any of arrays contains itself on any nesting level that reference
|
|
* is rendered as `"[...]"` to prevent recursion.
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentDeepToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentDeepToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>?.contentDeepToString(): String {
|
|
if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0))
|
|
return contentDeepToStringImpl()
|
|
else
|
|
return java.util.Arrays.deepToString(this)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun <T> Array<out T>.contentEquals(other: Array<out T>): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun ByteArray.contentEquals(other: ByteArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun ShortArray.contentEquals(other: ShortArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun IntArray.contentEquals(other: IntArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun LongArray.contentEquals(other: LongArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun FloatArray.contentEquals(other: FloatArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun BooleanArray.contentEquals(other: BooleanArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun CharArray.contentEquals(other: CharArray): Boolean {
|
|
return this.contentEquals(other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun <T> Array<out T>?.contentEquals(other: Array<out T>?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun ShortArray?.contentEquals(other: ShortArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun IntArray?.contentEquals(other: IntArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun LongArray?.contentEquals(other: LongArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun FloatArray?.contentEquals(other: FloatArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun DoubleArray?.contentEquals(other: DoubleArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun BooleanArray?.contentEquals(other: BooleanArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* The elements are compared for equality with the [equals][Any.equals] function.
|
|
* For floating point numbers it means that `NaN` is equal to itself and `-0.0` is not equal to `0.0`.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentEqualsNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline infix fun CharArray?.contentEquals(other: CharArray?): Boolean {
|
|
return java.util.Arrays.equals(this, other)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray.contentHashCode(): Int {
|
|
return this.contentHashCode()
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a hash code based on the contents of this array as if it is [List].
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentHashCodeNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray?.contentHashCode(): Int {
|
|
return java.util.Arrays.hashCode(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
|
|
@SinceKotlin("1.1")
|
|
@DeprecatedSinceKotlin(hiddenSince = "1.4")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray.contentToString(): String {
|
|
return this.contentToString()
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<out T>?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of the contents of the specified array as if it is [List].
|
|
*
|
|
* @sample samples.collections.Arrays.ContentOperations.contentToString
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@JvmName("contentToStringNullable")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray?.contentToString(): String {
|
|
return java.util.Arrays.toString(this)
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun <T> Array<out T>.copyInto(destination: Array<T>, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): Array<T> {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun ByteArray.copyInto(destination: ByteArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ByteArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun ShortArray.copyInto(destination: ShortArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): ShortArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun IntArray.copyInto(destination: IntArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): IntArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun LongArray.copyInto(destination: LongArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): LongArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun FloatArray.copyInto(destination: FloatArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): FloatArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun DoubleArray.copyInto(destination: DoubleArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): DoubleArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun BooleanArray.copyInto(destination: BooleanArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): BooleanArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Copies this array or its subrange into the [destination] array and returns that array.
|
|
*
|
|
* It's allowed to pass the same array in the [destination] and even specify the subrange so that it overlaps with the destination range.
|
|
*
|
|
* @param destination the array to copy to.
|
|
* @param destinationOffset the position in the [destination] array to copy to, 0 by default.
|
|
* @param startIndex the beginning (inclusive) of the subrange to copy, 0 by default.
|
|
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
|
|
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
|
|
* or when that index is out of the [destination] array indices range.
|
|
*
|
|
* @return the [destination] array.
|
|
*/
|
|
@SinceKotlin("1.3")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun CharArray.copyInto(destination: CharArray, destinationOffset: Int = 0, startIndex: Int = 0, endIndex: Int = size): CharArray {
|
|
System.arraycopy(this, startIndex, destination, destinationOffset, endIndex - startIndex)
|
|
return destination
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<T>.copyOf(): Array<T> {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray.copyOf(): ByteArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray.copyOf(): ShortArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray.copyOf(): IntArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray.copyOf(): LongArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray.copyOf(): FloatArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray.copyOf(): DoubleArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray.copyOf(): BooleanArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.copyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray.copyOf(): CharArray {
|
|
return java.util.Arrays.copyOf(this, size)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with zero values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray.copyOf(newSize: Int): ByteArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with zero values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray.copyOf(newSize: Int): ShortArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with zero values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray.copyOf(newSize: Int): IntArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with zero values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray.copyOf(newSize: Int): LongArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with zero values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray.copyOf(newSize: Int): FloatArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with zero values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray.copyOf(newSize: Int): DoubleArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* 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 `false` values if necessary.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with `false` values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray.copyOf(newSize: Int): BooleanArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array, resized to the given [newSize].
|
|
* The copy is either truncated or padded at the end with null char (`\u0000`) values if necessary.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with null char (`\u0000`) values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizedPrimitiveCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray.copyOf(newSize: Int): CharArray {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* Returns new array which is a copy of the original array, resized to the given [newSize].
|
|
* The copy is either truncated or padded at the end with `null` values if necessary.
|
|
*
|
|
* - If [newSize] is less than the size of the original array, the copy array is truncated to the [newSize].
|
|
* - If [newSize] is greater than the size of the original array, the extra elements in the copy array are filled with `null` values.
|
|
*
|
|
* @sample samples.collections.Arrays.CopyOfOperations.resizingCopyOf
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<T>.copyOf(newSize: Int): Array<T?> {
|
|
return java.util.Arrays.copyOf(this, newSize)
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<T>.copyOfRange(fromIndex: Int, toIndex: Int): Array<T> {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun ShortArray.copyOfRange(fromIndex: Int, toIndex: Int): ShortArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun IntArray.copyOfRange(fromIndex: Int, toIndex: Int): IntArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun LongArray.copyOfRange(fromIndex: Int, toIndex: Int): LongArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun FloatArray.copyOfRange(fromIndex: Int, toIndex: Int): FloatArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun DoubleArray.copyOfRange(fromIndex: Int, toIndex: Int): DoubleArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun BooleanArray.copyOfRange(fromIndex: Int, toIndex: Int): BooleanArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a new array which is a copy of the specified range of the original array.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to copy.
|
|
* @param toIndex the end of the range (exclusive) to copy.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@JvmName("copyOfRangeInline")
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun CharArray.copyOfRange(fromIndex: Int, toIndex: Int): CharArray {
|
|
return if (kotlin.internal.apiVersionIsAtLeast(1, 3, 0)) {
|
|
copyOfRangeImpl(fromIndex, toIndex)
|
|
} else {
|
|
if (toIndex > size) throw IndexOutOfBoundsException("toIndex: $toIndex, size: $size")
|
|
java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun <T> Array<T>.copyOfRangeImpl(fromIndex: Int, toIndex: Int): Array<T> {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun ByteArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): ByteArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun ShortArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): ShortArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun IntArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): IntArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun LongArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): LongArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun FloatArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): FloatArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun DoubleArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): DoubleArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun BooleanArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): BooleanArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@PublishedApi
|
|
@JvmName("copyOfRange")
|
|
internal fun CharArray.copyOfRangeImpl(fromIndex: Int, toIndex: Int): CharArray {
|
|
copyOfRangeToIndexCheck(toIndex, size)
|
|
return java.util.Arrays.copyOfRange(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun <T> Array<T>.fill(element: T, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun ByteArray.fill(element: Byte, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun ShortArray.fill(element: Short, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun IntArray.fill(element: Int, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun LongArray.fill(element: Long, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun FloatArray.fill(element: Float, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun DoubleArray.fill(element: Double, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun BooleanArray.fill(element: Boolean, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Fills this array or its subrange with the specified [element] value.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to fill, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to fill, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun CharArray.fill(element: Char, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.fill(this, fromIndex, toIndex, element)
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun <T> Array<T>.plus(element: T): Array<T> {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun ByteArray.plus(element: Byte): ByteArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun ShortArray.plus(element: Short): ShortArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun IntArray.plus(element: Int): IntArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun LongArray.plus(element: Long): LongArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun FloatArray.plus(element: Float): FloatArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun DoubleArray.plus(element: Double): DoubleArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun BooleanArray.plus(element: Boolean): BooleanArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
public actual operator fun CharArray.plus(element: Char): CharArray {
|
|
val index = size
|
|
val result = java.util.Arrays.copyOf(this, index + 1)
|
|
result[index] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun <T> Array<T>.plus(elements: Collection<T>): Array<T> {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun ShortArray.plus(elements: Collection<Short>): ShortArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun IntArray.plus(elements: Collection<Int>): IntArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun LongArray.plus(elements: Collection<Long>): LongArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun FloatArray.plus(elements: Collection<Float>): FloatArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun DoubleArray.plus(elements: Collection<Double>): DoubleArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun BooleanArray.plus(elements: Collection<Boolean>): BooleanArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] collection.
|
|
*/
|
|
public actual operator fun CharArray.plus(elements: Collection<Char>): CharArray {
|
|
var index = size
|
|
val result = java.util.Arrays.copyOf(this, index + elements.size)
|
|
for (element in elements) result[index++] = element
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun <T> Array<T>.plus(elements: Array<out T>): Array<T> {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun ByteArray.plus(elements: ByteArray): ByteArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun ShortArray.plus(elements: ShortArray): ShortArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun IntArray.plus(elements: IntArray): IntArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun LongArray.plus(elements: LongArray): LongArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun FloatArray.plus(elements: FloatArray): FloatArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun DoubleArray.plus(elements: DoubleArray): DoubleArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun BooleanArray.plus(elements: BooleanArray): BooleanArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then all elements of the given [elements] array.
|
|
*/
|
|
public actual operator fun CharArray.plus(elements: CharArray): CharArray {
|
|
val thisSize = size
|
|
val arraySize = elements.size
|
|
val result = java.util.Arrays.copyOf(this, thisSize + arraySize)
|
|
System.arraycopy(elements, 0, result, thisSize, arraySize)
|
|
return result
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all elements of the original array and then the given [element].
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T> Array<T>.plusElement(element: T): Array<T> {
|
|
return plus(element)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun IntArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun LongArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun ByteArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun ShortArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun DoubleArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun FloatArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArray
|
|
*/
|
|
public actual fun CharArray.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place according to the natural order of its elements.
|
|
*
|
|
* The sort is _stable_. It means that equal elements preserve their order relative to each other after sorting.
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortArrayOfComparable
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public actual inline fun <T : Comparable<T>> Array<out T>.sort(): Unit {
|
|
@Suppress("UNCHECKED_CAST")
|
|
(this as Array<Any?>).sort()
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place according to the natural order of its elements.
|
|
*
|
|
* The sort is _stable_. It means that equal elements preserve their order relative to each other after sorting.
|
|
*
|
|
* @throws ClassCastException if any element of the array is not [Comparable].
|
|
*/
|
|
public fun <T> Array<out T>.sort(): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* The sort is _stable_. It means that equal elements preserve their order relative to each other after sorting.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArrayOfComparable
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun <T : Comparable<T>> Array<out T>.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun IntArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun LongArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun FloatArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArray
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun CharArray.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place.
|
|
*
|
|
* The sort is _stable_. It means that equal elements preserve their order relative to each other after sorting.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*
|
|
* @sample samples.collections.Arrays.Sorting.sortRangeOfArrayOfComparable
|
|
*/
|
|
public fun <T> Array<out T>.sort(fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex)
|
|
}
|
|
|
|
/**
|
|
* Sorts the array in-place according to the order specified by the given [comparator].
|
|
*
|
|
* The sort is _stable_. It means that equal elements preserve their order relative to each other after sorting.
|
|
*/
|
|
public actual fun <T> Array<out T>.sortWith(comparator: Comparator<in T>): Unit {
|
|
if (size > 1) java.util.Arrays.sort(this, comparator)
|
|
}
|
|
|
|
/**
|
|
* Sorts a range in the array in-place with the given [comparator].
|
|
*
|
|
* The sort is _stable_. It means that equal elements preserve their order relative to each other after sorting.
|
|
*
|
|
* @param fromIndex the start of the range (inclusive) to sort, 0 by default.
|
|
* @param toIndex the end of the range (exclusive) to sort, size of this array by default.
|
|
*
|
|
* @throws IndexOutOfBoundsException if [fromIndex] is less than zero or [toIndex] is greater than the size of this array.
|
|
* @throws IllegalArgumentException if [fromIndex] is greater than [toIndex].
|
|
*/
|
|
@Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
|
|
public actual fun <T> Array<out T>.sortWith(comparator: Comparator<in T>, fromIndex: Int = 0, toIndex: Int = size): Unit {
|
|
java.util.Arrays.sort(this, fromIndex, toIndex, comparator)
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun ByteArray.toTypedArray(): Array<Byte> {
|
|
val result = arrayOfNulls<Byte>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Byte>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun ShortArray.toTypedArray(): Array<Short> {
|
|
val result = arrayOfNulls<Short>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Short>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun IntArray.toTypedArray(): Array<Int> {
|
|
val result = arrayOfNulls<Int>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Int>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun LongArray.toTypedArray(): Array<Long> {
|
|
val result = arrayOfNulls<Long>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Long>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun FloatArray.toTypedArray(): Array<Float> {
|
|
val result = arrayOfNulls<Float>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Float>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun DoubleArray.toTypedArray(): Array<Double> {
|
|
val result = arrayOfNulls<Double>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Double>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun BooleanArray.toTypedArray(): Array<Boolean> {
|
|
val result = arrayOfNulls<Boolean>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Boolean>
|
|
}
|
|
|
|
/**
|
|
* Returns a *typed* object array containing all of the elements of this primitive array.
|
|
*/
|
|
public actual fun CharArray.toTypedArray(): Array<Char> {
|
|
val result = arrayOfNulls<Char>(size)
|
|
for (index in indices)
|
|
result[index] = this[index]
|
|
@Suppress("UNCHECKED_CAST")
|
|
return result as Array<Char>
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun <T : Comparable<T>> Array<out T>.toSortedSet(): java.util.SortedSet<T> {
|
|
return toCollection(java.util.TreeSet<T>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun ByteArray.toSortedSet(): java.util.SortedSet<Byte> {
|
|
return toCollection(java.util.TreeSet<Byte>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun ShortArray.toSortedSet(): java.util.SortedSet<Short> {
|
|
return toCollection(java.util.TreeSet<Short>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun IntArray.toSortedSet(): java.util.SortedSet<Int> {
|
|
return toCollection(java.util.TreeSet<Int>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun LongArray.toSortedSet(): java.util.SortedSet<Long> {
|
|
return toCollection(java.util.TreeSet<Long>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun FloatArray.toSortedSet(): java.util.SortedSet<Float> {
|
|
return toCollection(java.util.TreeSet<Float>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun DoubleArray.toSortedSet(): java.util.SortedSet<Double> {
|
|
return toCollection(java.util.TreeSet<Double>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun BooleanArray.toSortedSet(): java.util.SortedSet<Boolean> {
|
|
return toCollection(java.util.TreeSet<Boolean>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*/
|
|
public fun CharArray.toSortedSet(): java.util.SortedSet<Char> {
|
|
return toCollection(java.util.TreeSet<Char>())
|
|
}
|
|
|
|
/**
|
|
* Returns a new [SortedSet][java.util.SortedSet] of all elements.
|
|
*
|
|
* Elements in the set returned are sorted according to the given [comparator].
|
|
*/
|
|
public fun <T> Array<out T>.toSortedSet(comparator: Comparator<in T>): java.util.SortedSet<T> {
|
|
return toCollection(java.util.TreeSet<T>(comparator))
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun <T> Array<out T>.sumOf(selector: (T) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun ByteArray.sumOf(selector: (Byte) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun ShortArray.sumOf(selector: (Short) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun IntArray.sumOf(selector: (Int) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun LongArray.sumOf(selector: (Long) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun FloatArray.sumOf(selector: (Float) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun DoubleArray.sumOf(selector: (Double) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun BooleanArray.sumOf(selector: (Boolean) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigDecimal")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun CharArray.sumOf(selector: (Char) -> java.math.BigDecimal): java.math.BigDecimal {
|
|
var sum: java.math.BigDecimal = 0.toBigDecimal()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun <T> Array<out T>.sumOf(selector: (T) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun ByteArray.sumOf(selector: (Byte) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun ShortArray.sumOf(selector: (Short) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun IntArray.sumOf(selector: (Int) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun LongArray.sumOf(selector: (Long) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun FloatArray.sumOf(selector: (Float) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun DoubleArray.sumOf(selector: (Double) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun BooleanArray.sumOf(selector: (Boolean) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|
|
/**
|
|
* Returns the sum of all values produced by [selector] function applied to each element in the array.
|
|
*/
|
|
@SinceKotlin("1.4")
|
|
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
|
|
@OverloadResolutionByLambdaReturnType
|
|
@kotlin.jvm.JvmName("sumOfBigInteger")
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun CharArray.sumOf(selector: (Char) -> java.math.BigInteger): java.math.BigInteger {
|
|
var sum: java.math.BigInteger = 0.toBigInteger()
|
|
for (element in this) {
|
|
sum += selector(element)
|
|
}
|
|
return sum
|
|
}
|
|
|