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.
Since Kotlin
1.0Sorts elements in the array in-place descending according to their natural sort order.
Since Kotlin
1.0Sorts elements of the array in the specified range in-place. The elements are 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.
Since Kotlin
1.4Parameters
the start of the range (inclusive) to sort.
the end of the range (exclusive) to sort.
Throws
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
Since Kotlin
1.4Parameters
the start of the range (inclusive) to sort.
the end of the range (exclusive) to sort.
Throws
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.
Since Kotlin
1.0Sorts elements in the array in-place descending according to their natural sort order.