Open In App

Scala Mutable SortedSet max() method

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

Article Tags :