El método intersect() se utiliza para calcular la intersección entre dos conjuntos.
Definición del método: def intersect(that: Set[A]): Set[A]
Tipo de retorno: Devuelve un conjunto que contiene los elementos presentes en ambos conjuntos.
Ejemplo 1:
// Scala program of intersect() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set(1, 2, 3, 4, 5) val s2 = Set(11, 12, 13, 4, 5) // Applying intersect method val s3 = s1.intersect(s2) s3.foreach(x => println(x)) } }
Producción:
5 4
Ejemplo #2:
// Scala program of intersect() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set(1, 2, 3, 4, 5) val s2 = Set(11, 2, 3, 4, 5) // Applying intersect method val s3 = s1.intersect(s2) s3.foreach(x => println(x)) } }
Producción:
5 2 3 4
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA