@@ -23049,8 +23049,6 @@ public inline fun CharArray.sumOf(selector: (Char) -> Double): Double {
23049
23049
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23050
23050
*/
23051
23051
@SinceKotlin("1.4")
23052
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23053
- @OverloadResolutionByLambdaReturnType
23054
23052
@kotlin.jvm.JvmName("sumOfInt")
23055
23053
@kotlin.internal.InlineOnly
23056
23054
public inline fun <T> Array<out T>.sumOf(selector: (T) -> Int): Int {
@@ -23065,8 +23063,6 @@ public inline fun <T> Array<out T>.sumOf(selector: (T) -> Int): Int {
23065
23063
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23066
23064
*/
23067
23065
@SinceKotlin("1.4")
23068
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23069
- @OverloadResolutionByLambdaReturnType
23070
23066
@kotlin.jvm.JvmName("sumOfInt")
23071
23067
@kotlin.internal.InlineOnly
23072
23068
public inline fun ByteArray.sumOf(selector: (Byte) -> Int): Int {
@@ -23081,8 +23077,6 @@ public inline fun ByteArray.sumOf(selector: (Byte) -> Int): Int {
23081
23077
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23082
23078
*/
23083
23079
@SinceKotlin("1.4")
23084
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23085
- @OverloadResolutionByLambdaReturnType
23086
23080
@kotlin.jvm.JvmName("sumOfInt")
23087
23081
@kotlin.internal.InlineOnly
23088
23082
public inline fun ShortArray.sumOf(selector: (Short) -> Int): Int {
@@ -23097,8 +23091,6 @@ public inline fun ShortArray.sumOf(selector: (Short) -> Int): Int {
23097
23091
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23098
23092
*/
23099
23093
@SinceKotlin("1.4")
23100
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23101
- @OverloadResolutionByLambdaReturnType
23102
23094
@kotlin.jvm.JvmName("sumOfInt")
23103
23095
@kotlin.internal.InlineOnly
23104
23096
public inline fun IntArray.sumOf(selector: (Int) -> Int): Int {
@@ -23113,8 +23105,6 @@ public inline fun IntArray.sumOf(selector: (Int) -> Int): Int {
23113
23105
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23114
23106
*/
23115
23107
@SinceKotlin("1.4")
23116
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23117
- @OverloadResolutionByLambdaReturnType
23118
23108
@kotlin.jvm.JvmName("sumOfInt")
23119
23109
@kotlin.internal.InlineOnly
23120
23110
public inline fun LongArray.sumOf(selector: (Long) -> Int): Int {
@@ -23129,8 +23119,6 @@ public inline fun LongArray.sumOf(selector: (Long) -> Int): Int {
23129
23119
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23130
23120
*/
23131
23121
@SinceKotlin("1.4")
23132
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23133
- @OverloadResolutionByLambdaReturnType
23134
23122
@kotlin.jvm.JvmName("sumOfInt")
23135
23123
@kotlin.internal.InlineOnly
23136
23124
public inline fun FloatArray.sumOf(selector: (Float) -> Int): Int {
@@ -23145,8 +23133,6 @@ public inline fun FloatArray.sumOf(selector: (Float) -> Int): Int {
23145
23133
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23146
23134
*/
23147
23135
@SinceKotlin("1.4")
23148
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23149
- @OverloadResolutionByLambdaReturnType
23150
23136
@kotlin.jvm.JvmName("sumOfInt")
23151
23137
@kotlin.internal.InlineOnly
23152
23138
public inline fun DoubleArray.sumOf(selector: (Double) -> Int): Int {
@@ -23161,8 +23147,6 @@ public inline fun DoubleArray.sumOf(selector: (Double) -> Int): Int {
23161
23147
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23162
23148
*/
23163
23149
@SinceKotlin("1.4")
23164
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23165
- @OverloadResolutionByLambdaReturnType
23166
23150
@kotlin.jvm.JvmName("sumOfInt")
23167
23151
@kotlin.internal.InlineOnly
23168
23152
public inline fun BooleanArray.sumOf(selector: (Boolean) -> Int): Int {
@@ -23177,8 +23161,6 @@ public inline fun BooleanArray.sumOf(selector: (Boolean) -> Int): Int {
23177
23161
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23178
23162
*/
23179
23163
@SinceKotlin("1.4")
23180
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23181
- @OverloadResolutionByLambdaReturnType
23182
23164
@kotlin.jvm.JvmName("sumOfInt")
23183
23165
@kotlin.internal.InlineOnly
23184
23166
public inline fun CharArray.sumOf(selector: (Char) -> Int): Int {
@@ -23337,8 +23319,6 @@ public inline fun CharArray.sumOf(selector: (Char) -> Long): Long {
23337
23319
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23338
23320
*/
23339
23321
@SinceKotlin("1.5")
23340
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23341
- @OverloadResolutionByLambdaReturnType
23342
23322
@kotlin.jvm.JvmName("sumOfUInt")
23343
23323
@WasExperimental(ExperimentalUnsignedTypes::class)
23344
23324
@kotlin.internal.InlineOnly
@@ -23354,8 +23334,6 @@ public inline fun <T> Array<out T>.sumOf(selector: (T) -> UInt): UInt {
23354
23334
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23355
23335
*/
23356
23336
@SinceKotlin("1.5")
23357
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23358
- @OverloadResolutionByLambdaReturnType
23359
23337
@kotlin.jvm.JvmName("sumOfUInt")
23360
23338
@WasExperimental(ExperimentalUnsignedTypes::class)
23361
23339
@kotlin.internal.InlineOnly
@@ -23371,8 +23349,6 @@ public inline fun ByteArray.sumOf(selector: (Byte) -> UInt): UInt {
23371
23349
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23372
23350
*/
23373
23351
@SinceKotlin("1.5")
23374
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23375
- @OverloadResolutionByLambdaReturnType
23376
23352
@kotlin.jvm.JvmName("sumOfUInt")
23377
23353
@WasExperimental(ExperimentalUnsignedTypes::class)
23378
23354
@kotlin.internal.InlineOnly
@@ -23388,8 +23364,6 @@ public inline fun ShortArray.sumOf(selector: (Short) -> UInt): UInt {
23388
23364
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23389
23365
*/
23390
23366
@SinceKotlin("1.5")
23391
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23392
- @OverloadResolutionByLambdaReturnType
23393
23367
@kotlin.jvm.JvmName("sumOfUInt")
23394
23368
@WasExperimental(ExperimentalUnsignedTypes::class)
23395
23369
@kotlin.internal.InlineOnly
@@ -23405,8 +23379,6 @@ public inline fun IntArray.sumOf(selector: (Int) -> UInt): UInt {
23405
23379
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23406
23380
*/
23407
23381
@SinceKotlin("1.5")
23408
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23409
- @OverloadResolutionByLambdaReturnType
23410
23382
@kotlin.jvm.JvmName("sumOfUInt")
23411
23383
@WasExperimental(ExperimentalUnsignedTypes::class)
23412
23384
@kotlin.internal.InlineOnly
@@ -23422,8 +23394,6 @@ public inline fun LongArray.sumOf(selector: (Long) -> UInt): UInt {
23422
23394
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23423
23395
*/
23424
23396
@SinceKotlin("1.5")
23425
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23426
- @OverloadResolutionByLambdaReturnType
23427
23397
@kotlin.jvm.JvmName("sumOfUInt")
23428
23398
@WasExperimental(ExperimentalUnsignedTypes::class)
23429
23399
@kotlin.internal.InlineOnly
@@ -23439,8 +23409,6 @@ public inline fun FloatArray.sumOf(selector: (Float) -> UInt): UInt {
23439
23409
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23440
23410
*/
23441
23411
@SinceKotlin("1.5")
23442
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23443
- @OverloadResolutionByLambdaReturnType
23444
23412
@kotlin.jvm.JvmName("sumOfUInt")
23445
23413
@WasExperimental(ExperimentalUnsignedTypes::class)
23446
23414
@kotlin.internal.InlineOnly
@@ -23456,8 +23424,6 @@ public inline fun DoubleArray.sumOf(selector: (Double) -> UInt): UInt {
23456
23424
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23457
23425
*/
23458
23426
@SinceKotlin("1.5")
23459
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23460
- @OverloadResolutionByLambdaReturnType
23461
23427
@kotlin.jvm.JvmName("sumOfUInt")
23462
23428
@WasExperimental(ExperimentalUnsignedTypes::class)
23463
23429
@kotlin.internal.InlineOnly
@@ -23473,8 +23439,6 @@ public inline fun BooleanArray.sumOf(selector: (Boolean) -> UInt): UInt {
23473
23439
* Returns the sum of all values produced by [selector] function applied to each element in the array.
23474
23440
*/
23475
23441
@SinceKotlin("1.5")
23476
- @OptIn(kotlin.experimental.ExperimentalTypeInference::class)
23477
- @OverloadResolutionByLambdaReturnType
23478
23442
@kotlin.jvm.JvmName("sumOfUInt")
23479
23443
@WasExperimental(ExperimentalUnsignedTypes::class)
23480
23444
@kotlin.internal.InlineOnly
0 commit comments