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

reduce

inline fun <S, T : S> MongoIterable<T>.reduce(crossinline operation: (acc: S, T) -> S): S (source)

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