kotlin.sequences.reduceIndexed

reduceIndexed

inline fun <S, T : S> Sequence<T>.reduceIndexed(
    operation: (index: Int, acc: S, T) -> S
): S

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original sequence.

Parameters

operation - function