Scala Mutable SortedSet toArray() method
Last Updated :
26 Mar, 2020
Improve
In Scala mutable collections, toArray() is utilized to return an array consisting of all the elements of the SortedSet.
Scala
Scala
Method Definition: def toArray: Array[A] Return Type: It returns an array consisting of all the elements of the SortedSet.Example #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)
}
}
// 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)
}
}
Output:
Example #2:
3 22 44 77
// 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)
}
}
// 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)
}
}
Output:
443 451 772