Open In App

Scala SortedSet max() method with example

Last Updated : 02 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The 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.immutable.SortedSet 

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(5, 11, 23, 72, 14) 
        
        // Applying max method 
        val result = s1.max
        
        // Display output
        println(result)
    } 
} 
Output:
72
Example #2: Scala
// Scala program of max() 
// method 
import scala.collection.immutable.SortedSet 

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(5, 11, 23, 72, 14, 21, 118) 
        
        // Applying max method 
        val result = s1.max
        
        // Display output
        println(result)
    } 
} 
Output:
118

Article Tags :

Explore