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- 獲取當前累加器值和一個元素並計算下一個累加器值的函數。