Open In App

Scala Mutable SortedSet head() method

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

In Scala mutable collections, SortedSet head() method is utilized to display the first element of the SortedSet.

Method Definition: def head: A

Return Type: It returns the first element of the SortedSet.

Example #1:




// Scala program of head() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(12, 15, 14, 13
          
        // Applying head method 
        val result = s1.head
          
        // Display output
        println(result)
    


Output:

12

Example #2:




// Scala program of head() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(6, 7, 5, 4, 1
          
        // Applying head method 
        val result = s1.head
          
        // Display output
        println(result)
    


Output:

1


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

Similar Reads