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

用法一

inline fun <S, T : S> Array<out T>.reduceOrNull(
    operation: (acc: S, T) -> S
): S?
inline fun ByteArray.reduceOrNull(
    operation: (acc: Byte, Byte) -> Byte
): Byte?
inline fun ShortArray.reduceOrNull(
    operation: (acc: Short, Short) -> Short
): Short?
inline fun IntArray.reduceOrNull(
    operation: (acc: Int, Int) -> Int
): Int?
inline fun LongArray.reduceOrNull(
    operation: (acc: Long, Long) -> Long
): Long?
inline fun FloatArray.reduceOrNull(
    operation: (acc: Float, Float) -> Float
): Float?
inline fun DoubleArray.reduceOrNull(
    operation: (acc: Double, Double) -> Double
): Double?
inline fun BooleanArray.reduceOrNull(
    operation: (acc: Boolean, Boolean) -> Boolean
): Boolean?
inline fun CharArray.reduceOrNull(
    operation: (acc: Char, Char) -> Char
): Char?
@ExperimentalUnsignedTypes inline fun UIntArray.reduceOrNull(
    operation: (acc: UInt, UInt) -> UInt
): UInt?
@ExperimentalUnsignedTypes inline fun ULongArray.reduceOrNull(
    operation: (acc: ULong, ULong) -> ULong
): ULong?
@ExperimentalUnsignedTypes inline fun UByteArray.reduceOrNull(
    operation: (acc: UByte, UByte) -> UByte
): UByte?
@ExperimentalUnsignedTypes inline fun UShortArray.reduceOrNull(
    operation: (acc: UShort, UShort) -> UShort
): UShort?

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

如果数组为空,则返回 null

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.reduceOrNull { acc, string -> acc + string }) // abcd
println(strings.reduceIndexedOrNull { index, acc, string -> acc + string + index }) // ab1c2d3

println(emptyList<String>().reduceOrNull { _, _ -> "" }) // null
//sampleEnd
}

输出:

abcd
ab1c2d3
null

参数

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

用法二

inline fun <S, T : S> Iterable<T>.reduceOrNull(
    operation: (acc: S, T) -> S
): S?

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

如果集合为空,则返回 null

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.reduceOrNull { acc, string -> acc + string }) // abcd
println(strings.reduceIndexedOrNull { index, acc, string -> acc + string + index }) // ab1c2d3

println(emptyList<String>().reduceOrNull { _, _ -> "" }) // null
//sampleEnd
}

输出:

abcd
ab1c2d3
null

参数

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