Scala Mutable SortedSet max() method

Last Updated : 26 Mar, 2020
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
// 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
// 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
Comment

Explore