En las colecciones mutables de Scala, el método SortedSet find() se utiliza para encontrar el primer elemento del SortedSet que satisface el predicado dado, si está presente.
Definición del método: def find(p: (A) => Boolean): Opción[A]
Tipo de retorno: Devuelve el primer elemento del SortedSet que satisface el predicado dado.
Ejemplo 1:
// Scala program of find() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(115, 112, 3, 113) // Applying find method val result = s1.find(_ == 3) // Displays output println(result) } }
Producción:
Some(3)
Ejemplo #2:
// Scala program of find() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(25, 22, 33, 13) // Applying find method val result = s1.find(_ == 10) // Displays output println(result) } }
Producción:
None