runningReduce
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this array.
Note that acc
value passed to operation function should not be mutated; otherwise it would affect the previous value in resulting list.
Since Kotlin
1.4Parameters
function that takes current accumulator value and the element, and calculates the next accumulator value.
Samples
import kotlin.test.*
fun main() {
//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
}
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this array.
Since Kotlin
1.4Parameters
function that takes current accumulator value and an element, and calculates the next accumulator value.
Samples
import kotlin.test.*
fun main() {
//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
}
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this collection.
Note that acc
value passed to operation function should not be mutated; otherwise it would affect the previous value in resulting list.
Since Kotlin
1.4Parameters
function that takes current accumulator value and the element, and calculates the next accumulator value.
Samples
import kotlin.test.*
fun main() {
//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
}
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this array.
Note that acc
value passed to operation function should not be mutated; otherwise it would affect the previous value in resulting list.
Since Kotlin
1.4Parameters
function that takes current accumulator value and an element, and calculates the next accumulator value.
Samples
import kotlin.test.*
fun main() {
//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
}