reduceRight所在位置是kotlin.collections.reduceRight,其相关用法介绍如下。

用法一

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
@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

从最后一个元素开始累加值,并将 operation 从右到左应用于每个元素和当前累加器值。

如果此数组为空,则引发异常。如果数组可以按预期方式为空,请改用reduceRightOrNull。当接收器为空时,它返回null

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.reduceRight { string, acc -> acc + string }) // dcba
println(strings.reduceRightIndexed { index, string, acc -> acc + string + index }) // dc2b1a0

// emptyList<Int>().reduceRight { _, _ -> 0 } //  will fail
//sampleEnd
}

输出:

dcba
dc2b1a0

参数

operation- 获取元素和当前累加器值并计算下一个累加器值的函数。

用法二

inline fun <S, T : S> List<T>.reduceRight(
    operation: (T, acc: S) -> S
): S

从最后一个元素开始累加值,并将 operation 从右到左应用于每个元素和当前累加器值。

如果此列表为空,则引发异常。如果列表可以按预期方式为空,请改用reduceRightOrNull。当接收器为空时,它返回null

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.reduceRight { string, acc -> acc + string }) // dcba
println(strings.reduceRightIndexed { index, string, acc -> acc + string + index }) // dc2b1a0

// emptyList<Int>().reduceRight { _, _ -> 0 } //  will fail
//sampleEnd
}

输出:

dcba
dc2b1a0

参数

operation- 获取元素和当前累加器值并计算下一个累加器值的函数。