Open In App

Scala Mutable SortedSet max() method

Improve
Improve
Like Article
Like
Save
Share
Report

In Scala mutable collections, max() method is utilized to find the largest element of all the elements in the SortedSet.

Method Definition: def max: A

Return Type: It returns the largest of all the elements in the SortedSet.

Example #1:




// Scala program of max() 
// 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, 7, 4
          
        // Applying max method 
        val result = s1.max
          
        // Display output
        println(result)
    


Output:

7

Example #2:




// Scala program of max() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(88, 54, 63, 458, 96
          
        // Applying max method 
        val result = s1.max
          
        // Display output
        println(result)
    


Output:

458


Last Updated : 26 Mar, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads