kmongo / kotlin.collections / com.mongodb.client.MongoIterable / fold

fold

inline fun <T, R> MongoIterable<T>.fold(initial: R, crossinline operation: (acc: R, T) -> R): R (source)

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