evkaky
ORDER BY name ASC, age DESC
persons.sortedBy { it.name }.sortedByDescending { it.age }
kirillrakhman
listOf<Person>().sortedWith(compareBy<Person> { it.name }.thenByDescending { it.age })
list.sortedWith(compareBy({ it.a }, { it.b }, { it.c }))
A modern programming language that makes developers happier.