@ExperimentalUnsignedTypes inline fun UIntArray.reduceRight( operation: (UInt, acc: UInt) -> UInt ): UInt
@ExperimentalUnsignedTypes inline fun ULongArray.reduceRight( operation: (ULong, acc: ULong) -> ULong ): ULong
@ExperimentalUnsignedTypes inline fun UByteArray.reduceRight( operation: (UByte, acc: UByte) -> UByte ): UByte
@ExperimentalUnsignedTypes inline fun UShortArray.reduceRight( operation: (UShort, acc: UShort) -> UShort ): UShort
Accumulates value starting with last element and applying operation from right to left to each element and current accumulator value.
© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/reduce-right.html