sorted

fun <T : Comparable<T>> Array<out T>.sorted(): List<T>
fun <T : Comparable<T>> Iterable<T>.sorted(): List<T>

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

The sort is stable. It means that equal elements preserve their order relative to each other after sorting.


fun ByteArray.sorted(): List<Byte>
fun ShortArray.sorted(): List<Short>
fun IntArray.sorted(): List<Int>
fun LongArray.sorted(): List<Long>
fun FloatArray.sorted(): List<Float>
fun DoubleArray.sorted(): List<Double>
fun CharArray.sorted(): List<Char>

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


fun UIntArray.sorted(): List<UInt>
fun ULongArray.sorted(): List<ULong>
fun UByteArray.sorted(): List<UByte>
fun UShortArray.sorted(): List<UShort>

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

Since Kotlin

1.3