@@ -324,7 +324,7 @@ public actual fun <T> Array<out T>?.contentDeepToString(): String {
324
324
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
325
325
@SinceKotlin(" 1.1" )
326
326
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
327
- public actual infix fun <T > Array <out T >.contentEquals (other : Array <out T >): Boolean {
327
+ public infix fun <T > Array <out T >.contentEquals (other : Array <out T >): Boolean {
328
328
return this .contentEquals(other)
329
329
}
330
330
@@ -338,7 +338,7 @@ public actual infix fun <T> Array<out T>.contentEquals(other: Array<out T>): Boo
338
338
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
339
339
@SinceKotlin(" 1.1" )
340
340
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
341
- public actual infix fun ByteArray.contentEquals (other : ByteArray ): Boolean {
341
+ public infix fun ByteArray.contentEquals (other : ByteArray ): Boolean {
342
342
return this .contentEquals(other)
343
343
}
344
344
@@ -352,7 +352,7 @@ public actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean {
352
352
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
353
353
@SinceKotlin(" 1.1" )
354
354
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
355
- public actual infix fun ShortArray.contentEquals (other : ShortArray ): Boolean {
355
+ public infix fun ShortArray.contentEquals (other : ShortArray ): Boolean {
356
356
return this .contentEquals(other)
357
357
}
358
358
@@ -366,7 +366,7 @@ public actual infix fun ShortArray.contentEquals(other: ShortArray): Boolean {
366
366
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
367
367
@SinceKotlin(" 1.1" )
368
368
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
369
- public actual infix fun IntArray.contentEquals (other : IntArray ): Boolean {
369
+ public infix fun IntArray.contentEquals (other : IntArray ): Boolean {
370
370
return this .contentEquals(other)
371
371
}
372
372
@@ -380,7 +380,7 @@ public actual infix fun IntArray.contentEquals(other: IntArray): Boolean {
380
380
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
381
381
@SinceKotlin(" 1.1" )
382
382
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
383
- public actual infix fun LongArray.contentEquals (other : LongArray ): Boolean {
383
+ public infix fun LongArray.contentEquals (other : LongArray ): Boolean {
384
384
return this .contentEquals(other)
385
385
}
386
386
@@ -394,7 +394,7 @@ public actual infix fun LongArray.contentEquals(other: LongArray): Boolean {
394
394
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
395
395
@SinceKotlin(" 1.1" )
396
396
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
397
- public actual infix fun FloatArray.contentEquals (other : FloatArray ): Boolean {
397
+ public infix fun FloatArray.contentEquals (other : FloatArray ): Boolean {
398
398
return this .contentEquals(other)
399
399
}
400
400
@@ -408,7 +408,7 @@ public actual infix fun FloatArray.contentEquals(other: FloatArray): Boolean {
408
408
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
409
409
@SinceKotlin(" 1.1" )
410
410
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
411
- public actual infix fun DoubleArray.contentEquals (other : DoubleArray ): Boolean {
411
+ public infix fun DoubleArray.contentEquals (other : DoubleArray ): Boolean {
412
412
return this .contentEquals(other)
413
413
}
414
414
@@ -422,7 +422,7 @@ public actual infix fun DoubleArray.contentEquals(other: DoubleArray): Boolean {
422
422
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
423
423
@SinceKotlin(" 1.1" )
424
424
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
425
- public actual infix fun BooleanArray.contentEquals (other : BooleanArray ): Boolean {
425
+ public infix fun BooleanArray.contentEquals (other : BooleanArray ): Boolean {
426
426
return this .contentEquals(other)
427
427
}
428
428
@@ -436,7 +436,7 @@ public actual infix fun BooleanArray.contentEquals(other: BooleanArray): Boolean
436
436
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
437
437
@SinceKotlin(" 1.1" )
438
438
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
439
- public actual infix fun CharArray.contentEquals (other : CharArray ): Boolean {
439
+ public infix fun CharArray.contentEquals (other : CharArray ): Boolean {
440
440
return this .contentEquals(other)
441
441
}
442
442
@@ -608,7 +608,7 @@ public actual infix fun CharArray?.contentEquals(other: CharArray?): Boolean {
608
608
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
609
609
@SinceKotlin(" 1.1" )
610
610
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
611
- public actual fun <T > Array <out T >.contentHashCode (): Int {
611
+ public fun <T > Array <out T >.contentHashCode (): Int {
612
612
return this .contentHashCode()
613
613
}
614
614
@@ -618,7 +618,7 @@ public actual fun <T> Array<out T>.contentHashCode(): Int {
618
618
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
619
619
@SinceKotlin(" 1.1" )
620
620
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
621
- public actual fun ByteArray.contentHashCode (): Int {
621
+ public fun ByteArray.contentHashCode (): Int {
622
622
return this .contentHashCode()
623
623
}
624
624
@@ -628,7 +628,7 @@ public actual fun ByteArray.contentHashCode(): Int {
628
628
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
629
629
@SinceKotlin(" 1.1" )
630
630
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
631
- public actual fun ShortArray.contentHashCode (): Int {
631
+ public fun ShortArray.contentHashCode (): Int {
632
632
return this .contentHashCode()
633
633
}
634
634
@@ -638,7 +638,7 @@ public actual fun ShortArray.contentHashCode(): Int {
638
638
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
639
639
@SinceKotlin(" 1.1" )
640
640
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
641
- public actual fun IntArray.contentHashCode (): Int {
641
+ public fun IntArray.contentHashCode (): Int {
642
642
return this .contentHashCode()
643
643
}
644
644
@@ -648,7 +648,7 @@ public actual fun IntArray.contentHashCode(): Int {
648
648
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
649
649
@SinceKotlin(" 1.1" )
650
650
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
651
- public actual fun LongArray.contentHashCode (): Int {
651
+ public fun LongArray.contentHashCode (): Int {
652
652
return this .contentHashCode()
653
653
}
654
654
@@ -658,7 +658,7 @@ public actual fun LongArray.contentHashCode(): Int {
658
658
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
659
659
@SinceKotlin(" 1.1" )
660
660
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
661
- public actual fun FloatArray.contentHashCode (): Int {
661
+ public fun FloatArray.contentHashCode (): Int {
662
662
return this .contentHashCode()
663
663
}
664
664
@@ -668,7 +668,7 @@ public actual fun FloatArray.contentHashCode(): Int {
668
668
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
669
669
@SinceKotlin(" 1.1" )
670
670
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
671
- public actual fun DoubleArray.contentHashCode (): Int {
671
+ public fun DoubleArray.contentHashCode (): Int {
672
672
return this .contentHashCode()
673
673
}
674
674
@@ -678,7 +678,7 @@ public actual fun DoubleArray.contentHashCode(): Int {
678
678
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
679
679
@SinceKotlin(" 1.1" )
680
680
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
681
- public actual fun BooleanArray.contentHashCode (): Int {
681
+ public fun BooleanArray.contentHashCode (): Int {
682
682
return this .contentHashCode()
683
683
}
684
684
@@ -688,7 +688,7 @@ public actual fun BooleanArray.contentHashCode(): Int {
688
688
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
689
689
@SinceKotlin(" 1.1" )
690
690
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
691
- public actual fun CharArray.contentHashCode (): Int {
691
+ public fun CharArray.contentHashCode (): Int {
692
692
return this .contentHashCode()
693
693
}
694
694
@@ -808,7 +808,7 @@ public actual fun CharArray?.contentHashCode(): Int {
808
808
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
809
809
@SinceKotlin(" 1.1" )
810
810
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
811
- public actual fun <T > Array <out T >.contentToString (): String {
811
+ public fun <T > Array <out T >.contentToString (): String {
812
812
return this .contentToString()
813
813
}
814
814
@@ -820,7 +820,7 @@ public actual fun <T> Array<out T>.contentToString(): String {
820
820
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
821
821
@SinceKotlin(" 1.1" )
822
822
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
823
- public actual fun ByteArray.contentToString (): String {
823
+ public fun ByteArray.contentToString (): String {
824
824
return this .contentToString()
825
825
}
826
826
@@ -832,7 +832,7 @@ public actual fun ByteArray.contentToString(): String {
832
832
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
833
833
@SinceKotlin(" 1.1" )
834
834
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
835
- public actual fun ShortArray.contentToString (): String {
835
+ public fun ShortArray.contentToString (): String {
836
836
return this .contentToString()
837
837
}
838
838
@@ -844,7 +844,7 @@ public actual fun ShortArray.contentToString(): String {
844
844
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
845
845
@SinceKotlin(" 1.1" )
846
846
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
847
- public actual fun IntArray.contentToString (): String {
847
+ public fun IntArray.contentToString (): String {
848
848
return this .contentToString()
849
849
}
850
850
@@ -856,7 +856,7 @@ public actual fun IntArray.contentToString(): String {
856
856
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
857
857
@SinceKotlin(" 1.1" )
858
858
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
859
- public actual fun LongArray.contentToString (): String {
859
+ public fun LongArray.contentToString (): String {
860
860
return this .contentToString()
861
861
}
862
862
@@ -868,7 +868,7 @@ public actual fun LongArray.contentToString(): String {
868
868
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
869
869
@SinceKotlin(" 1.1" )
870
870
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
871
- public actual fun FloatArray.contentToString (): String {
871
+ public fun FloatArray.contentToString (): String {
872
872
return this .contentToString()
873
873
}
874
874
@@ -880,7 +880,7 @@ public actual fun FloatArray.contentToString(): String {
880
880
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
881
881
@SinceKotlin(" 1.1" )
882
882
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
883
- public actual fun DoubleArray.contentToString (): String {
883
+ public fun DoubleArray.contentToString (): String {
884
884
return this .contentToString()
885
885
}
886
886
@@ -892,7 +892,7 @@ public actual fun DoubleArray.contentToString(): String {
892
892
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
893
893
@SinceKotlin(" 1.1" )
894
894
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
895
- public actual fun BooleanArray.contentToString (): String {
895
+ public fun BooleanArray.contentToString (): String {
896
896
return this .contentToString()
897
897
}
898
898
@@ -904,7 +904,7 @@ public actual fun BooleanArray.contentToString(): String {
904
904
@Deprecated(" Use Kotlin compiler 1.4 to avoid deprecation warning." )
905
905
@SinceKotlin(" 1.1" )
906
906
@DeprecatedSinceKotlin(hiddenSince = " 1.4" )
907
- public actual fun CharArray.contentToString (): String {
907
+ public fun CharArray.contentToString (): String {
908
908
return this .contentToString()
909
909
}
910
910
0 commit comments