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

associateTo

inline fun <T, K, V, M : MutableMap<in K, in V>> MongoIterable<T>.associateTo(destination: M, crossinline transform: (T) -> Pair<K, V>): M (source)

Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given collection.

If any of two pairs would have the same key the last one gets added to the map.