El método max() se utiliza para encontrar el elemento más grande de todos los elementos en SortedSet.
Definición del método: def max: A
Tipo de retorno: Devuelve el mayor de todos los elementos del SortedSet.
Ejemplo 1:
// 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) } }
Producción:
72
Ejemplo #2:
// 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) } }
Producción:
118