sortedDescending

fun ByteBuffer.sortedDescending(): List<Byte>
fun ShortBuffer.sortedDescending(): List<Short>
fun IntBuffer.sortedDescending(): List<Int>
fun LongBuffer.sortedDescending(): List<Long>
fun FloatBuffer.sortedDescending(): List<Float>
fun DoubleBuffer.sortedDescending(): List<Double>
fun CharBuffer.sortedDescending(): List<Char>

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