sortDescending

Common
JVM
JS
Native
1.0
fun <T : Comparable<T>> Array<out T>.sortDescending()

Sorts elements in the array in-place descending according to their natural sort order.

The sort is stable. It means that equal elements preserve their order relative to each other after sorting.

Common
JVM
JS
Native
1.0
fun ByteArray.sortDescending()
fun ShortArray.sortDescending()
fun IntArray.sortDescending()
fun LongArray.sortDescending()
fun FloatArray.sortDescending()
fun DoubleArray.sortDescending()
fun CharArray.sortDescending()
@ExperimentalUnsignedTypes fun UIntArray.sortDescending()
@ExperimentalUnsignedTypes fun ULongArray.sortDescending()
@ExperimentalUnsignedTypes fun UByteArray.sortDescending()
@ExperimentalUnsignedTypes fun UShortArray.sortDescending()

Sorts elements in the array in-place descending according to their natural sort order.

Common
JVM
JS
Native
1.0
fun <T : Comparable<T>> MutableList<T>.sortDescending()

Sorts elements in the list in-place descending according to their natural sort order.

The sort is stable. It means that equal elements preserve their order relative to each other after sorting.