v1.7.0
  • Solutions
    • Multiplatform Mobile
    • Multiplatform for other platforms
    • Server-side
    • Web frontend
    • Data science
    • Android
  • Docs
  • Community
  • Teach
  • Play
    • Playground
    • Hands-on
    • Examples
    • Koans
← Docs
kotlin-stdlib / kotlin.sequences / toSortedSet

toSortedSet

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

Returns a new SortedSet of all elements.

The operation is terminal.

JVM
1.0
fun <T> Sequence<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.

The operation is terminal.

Stay in touch:
  • Contributing to Kotlin
  • Releases
  • Press Kit
  • Security
  • Blog
  • Issue Tracker
  • Brand assets
  • Careers
Kotlin™ is protected under the Kotlin Foundation and licensed under the Apache 2 license.
Supported and developed by JetBrains
esc