foldIndexed
inline fun <E : Any, R> EntitySequence<E, *>.foldIndexed(initial: R, operation: (index: Int, acc: R, E) -> R): R(source)
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.