Método inmutable TreeSet find() de Scala

En Scala immutable TreeSet class, el método find() se utiliza para devolver un elemento que satisface un predicado dado en el TreeSet.

Definición del método: def find(p: (A) => Boolean): Opción[A]

Tipo de retorno: Devuelve el primer elemento que satisface un predicado dado si está presente o devuelve Ninguno.

Ejemplo 1:

// Scala program of find() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val t1 = TreeSet(2, 4, 6, 7, 8, 9) 
          
        // Print the TreeSet
        println(t1) 
          
        // Applying find() method  
        val result = t1.find(x => {x % 7 == 0})
          
        // Displays output 
        println("Element divisible by 7: " + result)
          
    } 
} 
Producción:

TreeSet(2, 4, 6, 7, 8, 9)
Element divisible by 7: Some(7)

Ejemplo #2:

// Scala program of find() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val t1 = TreeSet(2, 4, 6, 7, 8, 9) 
          
        // Print the TreeSet
        println(t1) 
          
        // Applying find() method  
        val result = t1.find(x => {x % 10 == 0})
          
        // Displays output 
        println("Element divisible by 10: " + result)
          
    } 
} 
Producción:

TreeSet(2, 4, 6, 7, 8, 9)
Element divisible by 10: None

Publicación traducida automáticamente

Artículo escrito por Shivam_k y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *