sortDescending

fun ByteBuffer.sortDescending()
fun ShortBuffer.sortDescending()
fun IntBuffer.sortDescending()
fun LongBuffer.sortDescending()
fun FloatBuffer.sortDescending()
fun DoubleBuffer.sortDescending()
fun CharBuffer.sortDescending()

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

fun ByteArray.sortDescending(fromIndex: Int, toIndex: Int)
fun ShortArray.sortDescending(fromIndex: Int, toIndex: Int)
fun IntArray.sortDescending(fromIndex: Int, toIndex: Int)
fun LongArray.sortDescending(fromIndex: Int, toIndex: Int)
fun FloatArray.sortDescending(fromIndex: Int, toIndex: Int)
fun DoubleArray.sortDescending(fromIndex: Int, toIndex: Int)
fun CharArray.sortDescending(fromIndex: Int, toIndex: Int)

Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.

Parameters

fromIndex

the start of the range (inclusive) to sort.

toIndex

the end of the range (exclusive) to sort.

Throws

if fromIndex is less than zero or toIndex is greater than the size of this array.

if fromIndex is greater than toIndex.