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

filterIndexedTo

inline fun <T, C : MutableCollection<in T>> MongoIterable<T>.filterIndexedTo(destination: C, crossinline predicate: (index: Int, T) -> Boolean): C (source)

Appends all elements matching the given predicate to the given destination.

Parameters

predicate - function that takes the index of an element and the element itself and returns the result of predicate evaluation on the element.