Open In App

Scala Mutable SortedSet toArray() method

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In Scala mutable collections, toArray() is utilized to return an array consisting of all the elements of the SortedSet.

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)
              
    


Output:

3
22
44
77

Example #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)
              
    


Output:

443
451
772


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads