In Scala mutable collections, max() method is utilized to find the largest element of all the elements in the SortedSet.
Scala Scala
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:
Example #2:
7
// 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