sortedMapOf
fun <K : Comparable<K>, V> sortedMapOf(pairs: Collection<<Error class: unknown class><K, V>>): SortedMap<K, V>
fun <K : Comparable<K>, V> sortedMapOf(vararg pairs: <Error class: unknown class><K, V>): SortedMap<K, V>
Returns a new read-only sorted map with the specified contents, given as a list of pairs where the first value is the key and the second is the value.
If multiple pairs have the same key, the resulting map will contain the value from the last of those pairs.
The order of the entries is not preserved, but iterating over the map will always yield entries sorted by their keys.