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

mapNotNull

inline fun <T, R : Any> MongoIterable<T>.mapNotNull(crossinline transform: (T) -> R?): List<R> (source)

Returns a list containing only the non-null results of applying the given transform function to each element in the original collection.