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] []
参数
用法二
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] []
参数
用法三
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] []
参数
相关用法
- Kotlin runningReduceIndexed用法及代码示例
- Kotlin runningReduce用法及代码示例
- Kotlin runningFoldIndexed用法及代码示例
- Kotlin runningFold用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin reduceIndexed用法及代码示例
- Kotlin reduceTo用法及代码示例
- Kotlin reversed用法及代码示例
- Kotlin reduceRightIndexed用法及代码示例
- Kotlin replaceFirstChar用法及代码示例
- Kotlin reduceIndexedOrNull用法及代码示例
- Kotlin rangeTo用法及代码示例
- Kotlin reduce用法及代码示例
- Kotlin replace用法及代码示例
- Kotlin reduceRightIndexedOrNull用法及代码示例
- Kotlin reduceRightOrNull用法及代码示例
- Kotlin reduceOrNull用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.collections.runningReduceIndexed。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。