You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/stdlib/common/src/generated/_Arrays.kt
+9-9
Original file line number
Diff line number
Diff line change
@@ -5842,7 +5842,7 @@ public expect fun CharArray.contentToString(): String
5842
5842
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5843
5843
*
5844
5844
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5845
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5845
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5846
5846
* or when that index is out of the [destination] array indices range.
5847
5847
*
5848
5848
* @return the [destination] array.
@@ -5861,7 +5861,7 @@ public expect fun <T> Array<out T>.copyInto(destination: Array<T>, destinationOf
5861
5861
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5862
5862
*
5863
5863
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5864
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5864
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5865
5865
* or when that index is out of the [destination] array indices range.
5866
5866
*
5867
5867
* @return the [destination] array.
@@ -5880,7 +5880,7 @@ public expect fun ByteArray.copyInto(destination: ByteArray, destinationOffset:
5880
5880
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5881
5881
*
5882
5882
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5883
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5883
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5884
5884
* or when that index is out of the [destination] array indices range.
5885
5885
*
5886
5886
* @return the [destination] array.
@@ -5899,7 +5899,7 @@ public expect fun ShortArray.copyInto(destination: ShortArray, destinationOffset
5899
5899
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5900
5900
*
5901
5901
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5902
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5902
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5903
5903
* or when that index is out of the [destination] array indices range.
5904
5904
*
5905
5905
* @return the [destination] array.
@@ -5918,7 +5918,7 @@ public expect fun IntArray.copyInto(destination: IntArray, destinationOffset: In
5918
5918
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5919
5919
*
5920
5920
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5921
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5921
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5922
5922
* or when that index is out of the [destination] array indices range.
5923
5923
*
5924
5924
* @return the [destination] array.
@@ -5937,7 +5937,7 @@ public expect fun LongArray.copyInto(destination: LongArray, destinationOffset:
5937
5937
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5938
5938
*
5939
5939
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5940
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5940
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5941
5941
* or when that index is out of the [destination] array indices range.
5942
5942
*
5943
5943
* @return the [destination] array.
@@ -5956,7 +5956,7 @@ public expect fun FloatArray.copyInto(destination: FloatArray, destinationOffset
5956
5956
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5957
5957
*
5958
5958
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5959
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5959
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5960
5960
* or when that index is out of the [destination] array indices range.
5961
5961
*
5962
5962
* @return the [destination] array.
@@ -5975,7 +5975,7 @@ public expect fun DoubleArray.copyInto(destination: DoubleArray, destinationOffs
5975
5975
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5976
5976
*
5977
5977
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5978
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5978
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5979
5979
* or when that index is out of the [destination] array indices range.
5980
5980
*
5981
5981
* @return the [destination] array.
@@ -5994,7 +5994,7 @@ public expect fun BooleanArray.copyInto(destination: BooleanArray, destinationOf
5994
5994
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
5995
5995
*
5996
5996
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
5997
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
5997
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
5998
5998
* or when that index is out of the [destination] array indices range.
Copy file name to clipboardExpand all lines: libraries/stdlib/common/src/generated/_UArrays.kt
+4-4
Original file line number
Diff line number
Diff line change
@@ -334,7 +334,7 @@ public fun UShortArray.contentToString(): String {
334
334
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
335
335
*
336
336
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
337
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
337
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
338
338
* or when that index is out of the [destination] array indices range.
339
339
*
340
340
* @return the [destination] array.
@@ -358,7 +358,7 @@ public inline fun UIntArray.copyInto(destination: UIntArray, destinationOffset:
358
358
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
359
359
*
360
360
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
361
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
361
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
362
362
* or when that index is out of the [destination] array indices range.
363
363
*
364
364
* @return the [destination] array.
@@ -382,7 +382,7 @@ public inline fun ULongArray.copyInto(destination: ULongArray, destinationOffset
382
382
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
383
383
*
384
384
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
385
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
385
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
386
386
* or when that index is out of the [destination] array indices range.
387
387
*
388
388
* @return the [destination] array.
@@ -406,7 +406,7 @@ public inline fun UByteArray.copyInto(destination: UByteArray, destinationOffset
406
406
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
407
407
*
408
408
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
409
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
409
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
410
410
* or when that index is out of the [destination] array indices range.
Copy file name to clipboardExpand all lines: libraries/stdlib/js/src/generated/_ArraysJs.kt
+9-9
Original file line number
Diff line number
Diff line change
@@ -412,7 +412,7 @@ public actual fun CharArray.contentToString(): String {
412
412
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
413
413
*
414
414
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
415
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
415
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
416
416
* or when that index is out of the [destination] array indices range.
417
417
*
418
418
* @return the [destination] array.
@@ -436,7 +436,7 @@ public actual inline fun <T> Array<out T>.copyInto(destination: Array<T>, destin
436
436
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
437
437
*
438
438
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
439
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
439
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
440
440
* or when that index is out of the [destination] array indices range.
441
441
*
442
442
* @return the [destination] array.
@@ -460,7 +460,7 @@ public actual inline fun ByteArray.copyInto(destination: ByteArray, destinationO
460
460
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
461
461
*
462
462
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
463
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
463
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
464
464
* or when that index is out of the [destination] array indices range.
465
465
*
466
466
* @return the [destination] array.
@@ -484,7 +484,7 @@ public actual inline fun ShortArray.copyInto(destination: ShortArray, destinatio
484
484
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
485
485
*
486
486
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
487
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
487
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
488
488
* or when that index is out of the [destination] array indices range.
489
489
*
490
490
* @return the [destination] array.
@@ -508,7 +508,7 @@ public actual inline fun IntArray.copyInto(destination: IntArray, destinationOff
508
508
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
509
509
*
510
510
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
511
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
511
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
512
512
* or when that index is out of the [destination] array indices range.
513
513
*
514
514
* @return the [destination] array.
@@ -532,7 +532,7 @@ public actual inline fun LongArray.copyInto(destination: LongArray, destinationO
532
532
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
533
533
*
534
534
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
535
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
535
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
536
536
* or when that index is out of the [destination] array indices range.
537
537
*
538
538
* @return the [destination] array.
@@ -556,7 +556,7 @@ public actual inline fun FloatArray.copyInto(destination: FloatArray, destinatio
556
556
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
557
557
*
558
558
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
559
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
559
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
560
560
* or when that index is out of the [destination] array indices range.
561
561
*
562
562
* @return the [destination] array.
@@ -580,7 +580,7 @@ public actual inline fun DoubleArray.copyInto(destination: DoubleArray, destinat
580
580
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
581
581
*
582
582
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
583
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
583
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
584
584
* or when that index is out of the [destination] array indices range.
585
585
*
586
586
* @return the [destination] array.
@@ -604,7 +604,7 @@ public actual inline fun BooleanArray.copyInto(destination: BooleanArray, destin
604
604
* @param endIndex the end (exclusive) of the subrange to copy, size of this array by default.
605
605
*
606
606
* @throws IndexOutOfBoundsException or [IllegalArgumentException] when [startIndex] or [endIndex] is out of range of this array indices or when `startIndex > endIndex`.
607
-
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationIndex],
607
+
* @throws IndexOutOfBoundsException when the subrange doesn't fit into the [destination] array starting at the specified [destinationOffset],
608
608
* or when that index is out of the [destination] array indices range.
0 commit comments