kotlin.collections.sort

sort

fun <T : Comparable<T>> MutableList<T>.sort()

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

fun IntArray.sort()
fun LongArray.sort()
fun ByteArray.sort()
fun ShortArray.sort()
fun DoubleArray.sort()
fun FloatArray.sort()
fun CharArray.sort()

Sorts the array in-place.

inline fun <T : Comparable<T>> Array<out T>.sort()

Sorts the array in-place according to the natural order of its elements.

fun <T> Array<out T>.sort(
    fromIndex: Int = 0, 
    toIndex: Int = size)

Platform and version requirements: JVM

fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

fun ShortArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

fun IntArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

fun LongArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

fun FloatArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

fun DoubleArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

fun CharArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Platform and version requirements: JVM

Sorts a range in the array in-place.

inline fun <T> Array<out T>.sort(
    noinline comparison: (a: T, b: T) -> Int)

Platform and version requirements: JS

inline fun ByteArray.sort(
    noinline comparison: (a: Byte, b: Byte) -> Int)

Platform and version requirements: JS

inline fun ShortArray.sort(
    noinline comparison: (a: Short, b: Short) -> Int)

Platform and version requirements: JS

inline fun IntArray.sort(
    noinline comparison: (a: Int, b: Int) -> Int)

Platform and version requirements: JS

inline fun LongArray.sort(
    noinline comparison: (a: Long, b: Long) -> Int)

Platform and version requirements: JS

inline fun FloatArray.sort(
    noinline comparison: (a: Float, b: Float) -> Int)

Platform and version requirements: JS

inline fun DoubleArray.sort(
    noinline comparison: (a: Double, b: Double) -> Int)

Platform and version requirements: JS

inline fun CharArray.sort(
    noinline comparison: (a: Char, b: Char) -> Int)

Platform and version requirements: JS

Sorts the array in-place according to the order specified by the given comparison function.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/sort.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部