inline fun <S, T : S> Array<out T>.reduceRight( operation: (T, acc: S) -> S ): S
inline fun ByteArray.reduceRight( operation: (Byte, acc: Byte) -> Byte ): Byte
inline fun ShortArray.reduceRight( operation: (Short, acc: Short) -> Short ): Short
inline fun IntArray.reduceRight( operation: (Int, acc: Int) -> Int ): Int
inline fun LongArray.reduceRight( operation: (Long, acc: Long) -> Long ): Long
inline fun FloatArray.reduceRight( operation: (Float, acc: Float) -> Float ): Float
inline fun DoubleArray.reduceRight( operation: (Double, acc: Double) -> Double ): Double
inline fun BooleanArray.reduceRight( operation: (Boolean, acc: Boolean) -> Boolean ): Boolean
inline fun CharArray.reduceRight( operation: (Char, acc: Char) -> Char ): Char
inline fun <S, T : S> List<T>.reduceRight( operation: (T, acc: S) -> S ): S
@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