Método SortedSet &() mutable de Scala

En la colección mutable de Scala, el método &() se utiliza para crear un nuevo SortedSet que consta de todos los elementos que están presentes en ambos SortedSets dados.

Definición del método: def &(que: SortedSet[A]): ​​SortedSet[A]

Tipo de devolución: devuelve un nuevo SortedSet que consta de todos los elementos que están presentes en ambos SortedSets dados.

Ejemplo 1:

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

TreeSet(12, 100)

Ejemplo #2:

// Scala program of &() method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(51, 33, 95, 7) 
          
        val s2 = SortedSet(20, 44, 96, 8)
          
        // Applying &() method 
        val result = s1 & (s2)
              
        // Display output
        print(result) 
          
    } 
} 
Producción:

TreeSet()

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 *