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

associateBy

inline fun <T, K> MongoIterable<T>.associateBy(crossinline keySelector: (T) -> K): Map<K, T> (source)

Returns a Map containing the elements from the given collection indexed by the key returned from keySelector function applied to each element.

If any two elements would have the same key returned by keySelector the last one gets added to the map.

The returned map preserves the entry iteration order of the original collection.

inline fun <T, K, V> MongoIterable<T>.associateBy(crossinline keySelector: (T) -> K, crossinline valueTransform: (T) -> V): Map<K, V> (source)

Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given collection.

If any two elements would have the same key returned by keySelector the last one gets added to the map.

The returned map preserves the entry iteration order of the original collection.