El método diff() se utiliza para calcular la diferencia de un SortedSet y otro SortedSet.
Definición del método: def diff(que: SortedSet[A]): SortedSet[A]
Tipo de retorno: Devuelve un SortedSet que es la diferencia entre dos SortedSets.
Ejemplo 1:
// Scala program of diff() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedSets val s1 = SortedSet(1, 2, 3, 4, 5) val s2 = SortedSet(1, 2, 3) // Applying diff method val s3 = s1.diff(s2) // Displays output for(elem <- s3) println(elem) } }
Producción:
4 5
Ejemplo #2:
// Scala program of diff() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedSets val s1 = SortedSet(1, 2, 3, 4, 5) val s2 = SortedSet(6, 2, 7, 8) // Applying diff method val s3 = s1.diff(s2) // Displays output for(elem <- s3) println(elem) } }
Producción:
1 3 4 5