En Scala immutable TreeSet class
, el método contains() se utiliza para verificar si un elemento está presente en el TreeSet o no.
Definición del método: def contiene (elemento: A): booleano
Tipo de Retorno: Devuelve verdadero si el elemento está presente en el TreeSet o de lo contrario devuelve falso.
Ejemplo 1:
// Scala program of contains() // method // Import TreeSet import scala.collection.immutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(41, 12, 23, 43, 1, 72) // Print the TreeSet println(t1) // Applying contains() method val result = t1.contains(10) // Display output print("TreeSet contains '10': " + result) } }
Producción:
TreeSet(1, 12, 23, 41, 43, 72) TreeSet contains '10': false
Ejemplo #2:
// Scala program of contains() // method // Import TreeSet import scala.collection.immutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet("g", "e", "e", "k", "s") // Print the TreeSet println(t1) // Applying contains() method val result = t1.contains("k") // Display output print("TreeSet contains 'k': " + result) } }
Producción:
TreeSet(e, g, k, s) TreeSet contains 'k': true