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.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4, 5) val s2 = SortedSet(11, 12, 13, 4, 5) // Applying intersect method val s3 = s1.intersect(s2) s3.foreach(x => println(x)) } }
Producción:
4 5
Ejemplo #2:
// Scala program of intersect() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4, 5) val s2 = SortedSet(11, 2, 3, 4, 5) // Applying intersect method val s3 = s1.intersect(s2) s3.foreach(x => println(x)) } }
Producción:
2 3 4 5