to Sorted Set
Returns a new SortedSet of all elements.
fun <T> Array<out T>.toSortedSet(comparator: Comparator<in T>): SortedSet<T>
Content copied to clipboard
fun <T> Iterable<T>.toSortedSet(comparator: Comparator<in T>): SortedSet<T>
Content copied to clipboard
Returns a new SortedSet of all elements.
Elements in the set returned are sorted according to the given comparator.