sortedDescending

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun <T : Comparable<T>> Array<out T>.sortedDescending(): List<T>
fun <T : Comparable<T>> Iterable<T>.sortedDescending(): List<T>
@ExperimentalUnsignedTypes fun UIntArray.sortedDescending(): List<UInt>
@ExperimentalUnsignedTypes fun ULongArray.sortedDescending(): List<ULong>
@ExperimentalUnsignedTypes fun UByteArray.sortedDescending(): List<UByte>
@ExperimentalUnsignedTypes fun UShortArray.sortedDescending(): List<UShort>

Returns a list of all elements sorted 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.sortedDescending(): List<Byte>
fun ShortArray.sortedDescending(): List<Short>
fun IntArray.sortedDescending(): List<Int>
fun LongArray.sortedDescending(): List<Long>
fun FloatArray.sortedDescending(): List<Float>
fun DoubleArray.sortedDescending(): List<Double>
fun CharArray.sortedDescending(): List<Char>

Returns a list of all elements sorted descending according to their natural sort order.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/sorted-descending.html