fun <T : Comparable<T>> Sequence<T>.toSortedSet(): SortedSet<T>
Platform and version requirements: JVM
Returns a SortedSet of all elements.
fun <T> Sequence<T>.toSortedSet( comparator: Comparator<in T> ): SortedSet<T>
Platform and version requirements: JVM
Returns a SortedSet of all elements.
Elements in the set returned are sorted according to the given comparator.
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/to-sorted-set.html