W3cubDocs

/Kotlin

associate

inline fun <T, K, V> Sequence<T>.associate(
    transform: (T) -> Pair<K, V>
): Map<K, V>

Returns a Map containing key-value pairs provided by transform function applied to elements of the given sequence.

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

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

The operation is terminal.

© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/associate.html