set kotlin map code example
Example 1: create a map from list kotlin
fun main() {
val numbers = listOf("one", "two", "three", "four")
println(numbers.associateBy { it.first().toUpperCase() })
println(numbers.associateBy(keySelector = { it.first().toUpperCase() }, valueTransform = { it.length }))
}
Example 2: make map kotlin
val map = mapOf(1 to "x", 2 to "y", -1 to "zz")