copyInto

inline fun UIntArray.copyInto(    destination: UIntArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): UIntArray(source)
inline fun ULongArray.copyInto(    destination: ULongArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ULongArray(source)
inline fun UByteArray.copyInto(    destination: UByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): UByteArray(source)
inline fun UShortArray.copyInto(    destination: UShortArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): UShortArray(source)
expect fun <T> Array<out T>.copyInto(    destination: Array<T>,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): Array<T>(source)
expect fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray(source)
expect fun ShortArray.copyInto(    destination: ShortArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ShortArray(source)
expect fun IntArray.copyInto(    destination: IntArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): IntArray(source)
expect fun LongArray.copyInto(    destination: LongArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): LongArray(source)
expect fun FloatArray.copyInto(    destination: FloatArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): FloatArray(source)
expect fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray(source)
expect fun BooleanArray.copyInto(    destination: BooleanArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): BooleanArray(source)
expect fun CharArray.copyInto(    destination: CharArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): CharArray(source)

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.

Since Kotlin

1.3

Return

the destination array.

Parameters

destination

the array to copy to.

destinationOffset

the position in the destination array to copy to, 0 by default.

startIndex

the beginning (inclusive) of the subrange to copy, 0 by default.

endIndex

the end (exclusive) of the subrange to copy, size of this array by default.

Throws

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.

actual fun <T> Array<out T>.copyInto(    destination: Array<T>,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): Array<T>(source)
actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray(source)
actual fun ShortArray.copyInto(    destination: ShortArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ShortArray(source)
actual fun IntArray.copyInto(    destination: IntArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): IntArray(source)
actual fun LongArray.copyInto(    destination: LongArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): LongArray(source)
actual fun FloatArray.copyInto(    destination: FloatArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): FloatArray(source)
actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray(source)
actual fun BooleanArray.copyInto(    destination: BooleanArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): BooleanArray(source)
actual fun CharArray.copyInto(    destination: CharArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): CharArray(source)

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.

Since Kotlin

1.3

Return

the destination array.

Parameters

destination

the array to copy to.

destinationOffset

the position in the destination array to copy to, 0 by default.

startIndex

the beginning (inclusive) of the subrange to copy, 0 by default.

endIndex

the end (exclusive) of the subrange to copy, size of this array by default.

Throws

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.

actual inline fun <T> Array<out T>.copyInto(    destination: Array<T>,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): Array<T>
actual inline fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual inline fun ShortArray.copyInto(    destination: ShortArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ShortArray
actual inline fun IntArray.copyInto(    destination: IntArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): IntArray
actual inline fun LongArray.copyInto(    destination: LongArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): LongArray
actual inline fun FloatArray.copyInto(    destination: FloatArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): FloatArray
actual inline fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual inline fun BooleanArray.copyInto(    destination: BooleanArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): BooleanArray
actual inline fun CharArray.copyInto(    destination: CharArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): CharArray

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.

Since Kotlin

1.3

Return

the destination array.

Parameters

destination

the array to copy to.

destinationOffset

the position in the destination array to copy to, 0 by default.

startIndex

the beginning (inclusive) of the subrange to copy, 0 by default.

endIndex

the end (exclusive) of the subrange to copy, size of this array by default.

Throws

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.

actual fun <T> Array<out T>.copyInto(    destination: Array<T>,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): Array<T>
actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual fun ShortArray.copyInto(    destination: ShortArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ShortArray
actual fun IntArray.copyInto(    destination: IntArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): IntArray
actual fun LongArray.copyInto(    destination: LongArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): LongArray
actual fun FloatArray.copyInto(    destination: FloatArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): FloatArray
actual fun DoubleArray.copyInto(    destination: DoubleArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): DoubleArray
actual fun BooleanArray.copyInto(    destination: BooleanArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): BooleanArray
actual fun CharArray.copyInto(    destination: CharArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): CharArray

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.

Since Kotlin

1.3

Return

the destination array.

Parameters

destination

the array to copy to.

destinationOffset

the position in the destination array to copy to, 0 by default.

startIndex

the beginning (inclusive) of the subrange to copy, 0 by default.

endIndex

the end (exclusive) of the subrange to copy, size of this array by default.

Throws

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.