En las colecciones mutables de Scala, 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.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(22, 3, 44, 77) // Applying toArray method val result = s1.toArray // Display output for (elem <- result) println(elem) } }
Producción:
3 22 44 77
Ejemplo #2:
// Scala program of toArray() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(443, 451, 772) // Applying toArray method val result = s1.toArray // Display output for (elem <- result) println(elem) } }
Producción:
443 451 772