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()