associate
Returns a Map containing key-value pairs provided by transform function applied to elements of the given array.
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 array.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//sampleStart
val charCodes = intArrayOf(72, 69, 76, 76, 79)
val byCharCode = charCodes.associate { it to Char(it) }
// 76=L only occurs once because only the last pair with the same key gets added
println(byCharCode) // {72=H, 69=E, 76=L, 79=O}
//sampleEnd
}
Returns a Map containing key-value pairs provided by transform function applied to elements of the given collection.
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 collection.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//sampleStart
val names = listOf("Grace Hopper", "Jacob Bernoulli", "Johann Bernoulli")
val byLastName = names.associate { it.split(" ").let { (firstName, lastName) -> lastName to firstName } }
// Jacob Bernoulli does not occur in the map because only the last pair with the same key gets added
println(byLastName) // {Hopper=Grace, Bernoulli=Johann}
//sampleEnd
}