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.
Sorts elements in the array in-place descending according to their natural sort order.
Sorts 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.
fromIndex
- the start of the range (inclusive) to sort.
toIndex
- the end of the range (exclusive) to sort.
IndexOutOfBoundsException
- if fromIndex is less than zero or toIndex is greater than the size of this array.
IllegalArgumentException
- if fromIndex is greater than toIndex.
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
fromIndex
- the start of the range (inclusive) to sort.
toIndex
- the end of the range (exclusive) to sort.
IndexOutOfBoundsException
- if fromIndex is less than zero or toIndex is greater than the size of this array.
IllegalArgumentException
- if fromIndex is greater than toIndex.
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–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/sort-descending.html