W3cubDocs

/Kotlin

toSortedSet

fun <T : Comparable<T>> Sequence<T>.toSortedSet(): SortedSet<T>

Platform and version requirements: JVM

Returns a SortedSet of all elements.

The operation is terminal.

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.

The operation is terminal.

© 2010–2018 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