Decorate-sort-undecorate idiom: Difference between revisions

Line 596:
 
=={{header|Kotlin}}==
Kotlin already has a `sortedWithsortedBy` function that takescan sort using a customkey extractor comparatordirectly, so there is no need to writedecorate/undecorate. suchNevertheless, athe function;code however,example onebelow isshows shownhow hereto asdecorate, asort codeand exampleundecorate.
 
<syntaxhighlight lang="kotlin">
fun main() {
49

edits