W3cubDocs

/Kotlin

sortDescending

Platform and version requirements: JVM (1.0), JS (1.0), 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.

Platform and version requirements: JVM (1.0), JS (1.0), 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.

Platform and version requirements: JVM (1.0), JS (1.0), 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.

© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/sort-descending.html