fold

inline suspend fun <E, R> ReceiveChannel<E>.fold(
    initial: R,
    operation: (acc: R, E) -> R
): R
(source)

Platform and version requirements: JVM

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.

The operation is terminal. This function consumes all elements of the original ReceiveChannel.