Open In App

Scala Mutable SortedSet last() method

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

In Scala mutable collections, last() method is utilized to return the last element of the SortedSet.

Method Definition: def last: A

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

Example #1:




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


Output:

4

Example #2:




// Scala program of last() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet("geeks", "for", "geeks", "classes"
          
        // Applying last method 
        val result = s1.last
          
        // Display output
        println(result)
    


Output:

geeks


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

Similar Reads