eekboom
fun sort(list: List<String>): List<String> { val collator = Collator.getInstance(Locale.GERMAN) collator.strength = Collator.PRIMARY return list.sortedWith(Comparator {a, b -> collator.compare(a, b)}) }
ilya.gorbunov
sortedWith(collator)
Barco
A modern programming language that makes developers happier.