@@ -8853,84 +8853,140 @@ public fun kotlin.collections.Iterable<kotlin.ULong>.sum(): kotlin.ULong
8853
8853
@kotlin.WasExperimental(markerClass = {kotlin.ExperimentalUnsignedTypes::class})
8854
8854
public fun kotlin.collections.Iterable<kotlin.UShort>.sum(): kotlin.UInt
8855
8855
8856
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8857
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8856
8858
public inline fun <T> kotlin.Array<out T>.sumBy(selector: (T) -> kotlin.Int): kotlin.Int
8857
8859
8860
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8861
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8858
8862
public inline fun kotlin.BooleanArray.sumBy(selector: (kotlin.Boolean) -> kotlin.Int): kotlin.Int
8859
8863
8864
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8865
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8860
8866
public inline fun kotlin.ByteArray.sumBy(selector: (kotlin.Byte) -> kotlin.Int): kotlin.Int
8861
8867
8868
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8869
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8862
8870
public inline fun kotlin.CharArray.sumBy(selector: (kotlin.Char) -> kotlin.Int): kotlin.Int
8863
8871
8872
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8873
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8864
8874
public inline fun kotlin.DoubleArray.sumBy(selector: (kotlin.Double) -> kotlin.Int): kotlin.Int
8865
8875
8876
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8877
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8866
8878
public inline fun kotlin.FloatArray.sumBy(selector: (kotlin.Float) -> kotlin.Int): kotlin.Int
8867
8879
8880
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8881
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8868
8882
public inline fun kotlin.IntArray.sumBy(selector: (kotlin.Int) -> kotlin.Int): kotlin.Int
8869
8883
8884
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8885
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8870
8886
public inline fun kotlin.LongArray.sumBy(selector: (kotlin.Long) -> kotlin.Int): kotlin.Int
8871
8887
8888
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8889
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8872
8890
public inline fun kotlin.ShortArray.sumBy(selector: (kotlin.Short) -> kotlin.Int): kotlin.Int
8873
8891
8892
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8893
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8874
8894
@kotlin.SinceKotlin(version = "1.3")
8875
8895
@kotlin.ExperimentalUnsignedTypes
8876
8896
@kotlin.internal.InlineOnly
8877
8897
public inline fun kotlin.UByteArray.sumBy(selector: (kotlin.UByte) -> kotlin.UInt): kotlin.UInt
8878
8898
8899
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8900
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8879
8901
@kotlin.SinceKotlin(version = "1.3")
8880
8902
@kotlin.ExperimentalUnsignedTypes
8881
8903
@kotlin.internal.InlineOnly
8882
8904
public inline fun kotlin.UIntArray.sumBy(selector: (kotlin.UInt) -> kotlin.UInt): kotlin.UInt
8883
8905
8906
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8907
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8884
8908
@kotlin.SinceKotlin(version = "1.3")
8885
8909
@kotlin.ExperimentalUnsignedTypes
8886
8910
@kotlin.internal.InlineOnly
8887
8911
public inline fun kotlin.ULongArray.sumBy(selector: (kotlin.ULong) -> kotlin.UInt): kotlin.UInt
8888
8912
8913
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8914
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8889
8915
@kotlin.SinceKotlin(version = "1.3")
8890
8916
@kotlin.ExperimentalUnsignedTypes
8891
8917
@kotlin.internal.InlineOnly
8892
8918
public inline fun kotlin.UShortArray.sumBy(selector: (kotlin.UShort) -> kotlin.UInt): kotlin.UInt
8893
8919
8920
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8921
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8894
8922
public inline fun <T> kotlin.collections.Iterable<T>.sumBy(selector: (T) -> kotlin.Int): kotlin.Int
8895
8923
8924
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8925
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8896
8926
public inline fun <T> kotlin.Array<out T>.sumByDouble(selector: (T) -> kotlin.Double): kotlin.Double
8897
8927
8928
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8929
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8898
8930
public inline fun kotlin.BooleanArray.sumByDouble(selector: (kotlin.Boolean) -> kotlin.Double): kotlin.Double
8899
8931
8932
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8933
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8900
8934
public inline fun kotlin.ByteArray.sumByDouble(selector: (kotlin.Byte) -> kotlin.Double): kotlin.Double
8901
8935
8936
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8937
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8902
8938
public inline fun kotlin.CharArray.sumByDouble(selector: (kotlin.Char) -> kotlin.Double): kotlin.Double
8903
8939
8940
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8941
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8904
8942
public inline fun kotlin.DoubleArray.sumByDouble(selector: (kotlin.Double) -> kotlin.Double): kotlin.Double
8905
8943
8944
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8945
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8906
8946
public inline fun kotlin.FloatArray.sumByDouble(selector: (kotlin.Float) -> kotlin.Double): kotlin.Double
8907
8947
8948
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8949
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8908
8950
public inline fun kotlin.IntArray.sumByDouble(selector: (kotlin.Int) -> kotlin.Double): kotlin.Double
8909
8951
8952
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8953
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8910
8954
public inline fun kotlin.LongArray.sumByDouble(selector: (kotlin.Long) -> kotlin.Double): kotlin.Double
8911
8955
8956
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8957
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8912
8958
public inline fun kotlin.ShortArray.sumByDouble(selector: (kotlin.Short) -> kotlin.Double): kotlin.Double
8913
8959
8960
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8961
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8914
8962
@kotlin.SinceKotlin(version = "1.3")
8915
8963
@kotlin.ExperimentalUnsignedTypes
8916
8964
@kotlin.internal.InlineOnly
8917
8965
public inline fun kotlin.UByteArray.sumByDouble(selector: (kotlin.UByte) -> kotlin.Double): kotlin.Double
8918
8966
8967
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8968
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8919
8969
@kotlin.SinceKotlin(version = "1.3")
8920
8970
@kotlin.ExperimentalUnsignedTypes
8921
8971
@kotlin.internal.InlineOnly
8922
8972
public inline fun kotlin.UIntArray.sumByDouble(selector: (kotlin.UInt) -> kotlin.Double): kotlin.Double
8923
8973
8974
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8975
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8924
8976
@kotlin.SinceKotlin(version = "1.3")
8925
8977
@kotlin.ExperimentalUnsignedTypes
8926
8978
@kotlin.internal.InlineOnly
8927
8979
public inline fun kotlin.ULongArray.sumByDouble(selector: (kotlin.ULong) -> kotlin.Double): kotlin.Double
8928
8980
8981
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8982
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8929
8983
@kotlin.SinceKotlin(version = "1.3")
8930
8984
@kotlin.ExperimentalUnsignedTypes
8931
8985
@kotlin.internal.InlineOnly
8932
8986
public inline fun kotlin.UShortArray.sumByDouble(selector: (kotlin.UShort) -> kotlin.Double): kotlin.Double
8933
8987
8988
+ @kotlin.Deprecated(message = "Use sumOf instead.", replaceWith = kotlin.ReplaceWith(expression = "this.sumOf(selector)", imports = {}))
8989
+ @kotlin.DeprecatedSinceKotlin(warningSince = "1.5")
8934
8990
public inline fun <T> kotlin.collections.Iterable<T>.sumByDouble(selector: (T) -> kotlin.Double): kotlin.Double
8935
8991
8936
8992
@kotlin.SinceKotlin(version = "1.4")
0 commit comments