El método apply() se utiliza para probar si existen algunos elementos en SortedSet.
Definición del método: def apply (elemento: A)
Tipo de retorno: Devuelve verdadero si algunos elementos están presentes en el SortedSet; de lo contrario, devuelve falso.
Ejemplo 1:
// Scala program of apply() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedSets val s1 = SortedSet(1, 2, 3, 4, 5) // Applying apply method val result = s1.apply(3) // Displays output println(result) } }
Producción:
true
Ejemplo #2:
// Scala program of apply() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedSets val s1 = SortedSet(1, 2, 3, 4, 5) // Applying apply method val result = s1.apply(10) // Displays output println(result) } }
Producción:
false