W3cubDocs

/Kotlin

sortedMapOf

fun <K : Comparable<K>, V> sortedMapOf(
    vararg pairs: Pair<K, V>
): SortedMap<K, V>

Platform and version requirements: JVM

Returns a new SortedMap with the specified contents, given as a list of pairs where the first value is the key and the second is the value.

import kotlin.test.*
import java.util.*

fun main(args: Array<String>) {
//sampleStart
val map = sortedMapOf(Pair("c", 3), Pair("b", 2), Pair("d", 1))
println(map.keys) // [b, c, d]
println(map.values) // [2, 3, 1]
//sampleEnd
}

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