English | 简体中文

api-docs / org.ktorm.entity / foldIndexed

foldIndexed

inline fun <E : Any, R> EntitySequence<E, *>.foldIndexed(
    initial: R,
    operation: (index: Int, acc: R, E) -> R
): R
(source code)

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

The operation function takes the index of an element, current accumulator value and the element itself, and
calculates the next accumulator value.

The operation is terminal.