El método toSeq() se utiliza para devolver una secuencia que consta de todos los elementos del SortedSet.
Definición del método: def toSeq: Seq[A]
Tipo de devolución: devuelve una secuencia que consta de todos los elementos del SortedSet.
Ejemplo 1:
// Scala program of toSeq() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4, 5, 6) // Applying toSeq method val result = s1.toSeq // Display output for (ele <- result) println(ele) } }
Producción:
1 2 3 4 5 6
Ejemplo #2:
// Scala program of toSeq() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(41, 12, 23, 43, 1, 72) // Applying toSeq method val result = s1.toSeq // Display output for (ele <- result) println(ele) } }
Producción:
1 12 23 41 43 72