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

用法一

inline fun <S, T : S> Array<out T>.runningReduceIndexed(
    operation: (index: Int, acc: S, T) -> S
): List<S>
@ExperimentalUnsignedTypes inline fun UIntArray.runningReduceIndexed(
    operation: (index: Int, acc: UInt, UInt) -> UInt
): List<UInt>
@ExperimentalUnsignedTypes inline fun ULongArray.runningReduceIndexed(
    operation: (index: Int, acc: ULong, ULong) -> ULong
): List<ULong>
@ExperimentalUnsignedTypes inline fun UByteArray.runningReduceIndexed(
    operation: (index: Int, acc: UByte, UByte) -> UByte
): List<UByte>
@ExperimentalUnsignedTypes inline fun UShortArray.runningReduceIndexed(
    operation: (index: Int, acc: UShort, UShort) -> UShort
): List<UShort>

返回一个列表,其中包含通过从左到右将 operation 应用于每个元素、其在原始数组中的索引以及从该数组的第一个元素开始的当前累加器值而生成的连续累加值。

请注意,传递给operation 函数的acc 值不应被改变;否则会影响结果列表中的前一个值。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.runningReduce { acc, string -> acc + string }) // [a, ab, abc, abcd]
println(strings.runningReduceIndexed { index, acc, string -> acc + string + index }) // [a, ab1, ab1c2, ab1c2d3]

println(emptyList<String>().runningReduce { _, _ -> "X" }) // []
//sampleEnd
}

输出:

[a, ab, abc, abcd]
[a, ab1, ab1c2, ab1c2d3]
[]

参数

operation- 获取元素索引、当前累加器值和元素本身的函数,并计算下一个累加器值。

用法二

inline fun ByteArray.runningReduceIndexed(
    operation: (index: Int, acc: Byte, Byte) -> Byte
): List<Byte>
inline fun ShortArray.runningReduceIndexed(
    operation: (index: Int, acc: Short, Short) -> Short
): List<Short>
inline fun IntArray.runningReduceIndexed(
    operation: (index: Int, acc: Int, Int) -> Int
): List<Int>
inline fun LongArray.runningReduceIndexed(
    operation: (index: Int, acc: Long, Long) -> Long
): List<Long>
inline fun FloatArray.runningReduceIndexed(
    operation: (index: Int, acc: Float, Float) -> Float
): List<Float>
inline fun DoubleArray.runningReduceIndexed(
    operation: (index: Int, acc: Double, Double) -> Double
): List<Double>
inline fun BooleanArray.runningReduceIndexed(
    operation: (index: Int, acc: Boolean, Boolean) -> Boolean
): List<Boolean>
inline fun CharArray.runningReduceIndexed(
    operation: (index: Int, acc: Char, Char) -> Char
): List<Char>

返回一个列表,其中包含通过从左到右将 operation 应用于每个元素、其在原始数组中的索引以及从该数组的第一个元素开始的当前累加器值而生成的连续累加值。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.runningReduce { acc, string -> acc + string }) // [a, ab, abc, abcd]
println(strings.runningReduceIndexed { index, acc, string -> acc + string + index }) // [a, ab1, ab1c2, ab1c2d3]

println(emptyList<String>().runningReduce { _, _ -> "X" }) // []
//sampleEnd
}

输出:

[a, ab, abc, abcd]
[a, ab1, ab1c2, ab1c2d3]
[]

参数

operation- 获取元素索引、当前累加器值和元素本身的函数,并计算下一个累加器值。

用法三

inline fun <S, T : S> Iterable<T>.runningReduceIndexed(
    operation: (index: Int, acc: S, T) -> S
): List<S>

返回一个列表,其中包含通过从左到右将 operation 应用于每个元素、其在原始集合中的索引以及从该集合的第一个元素开始的当前累加器值而生成的连续累加值。

请注意,传递给operation 函数的acc 值不应被改变;否则会影响结果列表中的前一个值。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.runningReduce { acc, string -> acc + string }) // [a, ab, abc, abcd]
println(strings.runningReduceIndexed { index, acc, string -> acc + string + index }) // [a, ab1, ab1c2, ab1c2d3]

println(emptyList<String>().runningReduce { _, _ -> "X" }) // []
//sampleEnd
}

输出:

[a, ab, abc, abcd]
[a, ab1, ab1c2, ab1c2d3]
[]

参数

operation- 获取元素索引、当前累加器值和元素本身的函数,并计算下一个累加器值。