toSortedSet

Returns a new SortedSet of all elements.

Since Kotlin

1.0

fun <T> Array<out T>.toSortedSet(comparator: Comparator<in T>): SortedSet<T>(source)
fun <T> Iterable<T>.toSortedSet(comparator: Comparator<in T>): SortedSet<T>(source)

Returns a new SortedSet of all elements.

Elements in the set returned are sorted according to the given comparator.

Since Kotlin

1.0