En las colecciones mutables de Scala, SortedSet El método intersect() se utiliza para calcular la intersección entre dos SortedSets.
Definición del método: def intersect(que: SortedSet[A]): SortedSet[A]
Tipo de retorno: Devuelve un SortedSet que contiene los elementos presentes en ambos SortedSets.
Ejemplo 1:
// Scala program of intersect() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 12, 3, 14, 5) val s2 = SortedSet(11, 2, 3, 14, 5) // Applying intersect method val s3 = s1.intersect(s2) s3.foreach(x => println(x)) } }
Producción:
3 5 14
Ejemplo #2:
// Scala program of intersect() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(11, 22, 33, 44, 55) val s2 = SortedSet(11, 2, 3, 4, 5) // Applying intersect method val s3 = s1.intersect(s2) s3.foreach(x => println(x)) } }
Producción:
11