El toArray() se utiliza para devolver una array que consta de todos los elementos de SortedSet.
Definición del método: def toArray: Array[A]
Tipo de retorno: Devuelve una array que consta de todos los elementos del SortedSet.
Ejemplo 1:
// Scala program of toArray() // 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, 7) // Applying toArray method val result = s1.toArray // Display output for (elem <- result) println(elem) } }
Producción:
1 2 3 4 7
Ejemplo #2:
// Scala program of toArray() // 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 toArray method val result = s1.toArray // Display output for (elem <- result) println(elem) } }
Producción:
1 12 23 41 43 72