class Array<+T>
A contiguous, fixed-size list/array-like type.
Static Methods
Methods
Sorts the items in place using their default ordering. To sort a collection of non-Orderable items, use sortBy().
Sorts the items in place, using the given predicate to determine ordering. To sort a collection of non-Orderable items, use Orderable.create():
a: Array
Trait Implementations
readonly fun sourcecompare<U: Orderable>(other: Array<U>): OrderLexicographical comparison of two Vectors.
Returns a new collection representing the items of this collection in sorted order, using their default ordering. To sort a collection of non-Orderable items, use sortedBy().
Returns a new collection representing the items of this collection in sorted order, using the given predicate to determine ordering. To sort a collection of non-Orderable items, use Orderable.create():
a: Array