kotlin.collections.reduceRight

reduceRight

inline fun <S, T : S> List<T>.reduceRight(
    operation: (T, acc: S) -> S
): S
inline fun <S, T : S> Array<out T>.reduceRight(
    operation: (T, acc: S) -> S
): S
inline fun ByteArray.reduceRight(
    operation: (Byte, acc: Byte) -> Byte
): Byte
inline fun ShortArray.reduceRight(
    operation: (Short, acc: Short) -> Short
): Short
inline fun IntArray.reduceRight(
    operation: (Int, acc: Int) -> Int
): Int
登录查看完整内容