<@U1BDMPU82>: It's actually meant to say ``` map.t...
# announcements
s
@ravna: It's actually meant to say
Copy code
map.toSortedMap(compareBy<String> { it.length }.thenBy { it })
Which sorts the map by the string length, and then by the string contents. Simply, when you say
thenBy { it }
it says use the compare method provided in
it
(it being the String class) See: https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.comparisons/compare-by.html