Scala mutable SortedSet contiene() método

En la colección mutable de Scala, el método contains() se utiliza para verificar si un elemento está presente en el SortedSet o no.

Definición del método: def contiene (elemento: A): booleano

Tipo de retorno: Devuelve verdadero si el elemento está presente en el SortedSet; de lo contrario, devuelve falso.

Ejemplo 1:

// Scala program of contains() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(41, 12, 23, 43, 1, 72) 
          
        // Applying contains() method 
        val result = s1.contains(1)
              
        // Display output
        print(result)   
          
    } 
} 
Producción:

true

Ejemplo #2:

// Scala program of contains() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(41, 12, 23, 43, 1, 72) 
          
        // Applying contains() method 
        val result = s1.contains(10)
              
        // Display output
        print(result)   
          
    } 
} 
Producción:

false

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 *