Scala TreeSet &~() method with example
In Scala TreeSet class
, the &~() method is utilized to return a new TreeSet which contains the difference between two TreeSets.
Method Definition: def &~(that: TreeSet[A]): TreeSet[A]
Return Type: It returns a new TreeSet which contains the difference between two TreeSets.
Example #1:
// Scala program of &~() // method // Import TreeSet import scala.collection.mutable. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating TreeSets val t 1 = TreeSet( 2 , 1 , 3 , 1 , 4 , 5 , 6 ) val t 2 = TreeSet( 2 , 4 , 6 ) // Print the TreeSets println(t 1 ) println(t 2 ) // Applying &~() method val result = t 1 .&~(t 2 ) // Display output print( "TreeSet containing difference of two TreeSets: " + result) } } |
chevron_right
filter_none
Output:
TreeSet(1, 2, 3, 4, 5, 6) TreeSet(2, 4, 6) TreeSet containing difference of two TreeSets: TreeSet(1, 3, 5)
Example #2:
// Scala program of &~() // method // Import TreeSet import scala.collection.mutable. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating TreeSets val t 1 = TreeSet( "g" , "e" , "e" , "k" , "s" , "f" , "o" , "r" ) val t 2 = TreeSet( "g" , "e" , "e" , "k" , "s" ) // Print the TreeSets println(t 1 ) println(t 2 ) // Applying &~() method val result = t 1 .&~(t 2 ) // Display output print( "TreeSet containing difference of two TreeSets: " + result) } } |
chevron_right
filter_none
Output:
TreeSet(e, f, g, k, o, r, s) TreeSet(e, g, k, s) TreeSet containing difference of two TreeSets: TreeSet(f, o, r)
Recommended Posts:
- Scala TreeSet sum() method with example
- Scala TreeSet min() method with example
- Scala TreeSet contains() method with example
- Scala TreeSet take() method with example
- Scala TreeSet &() method with example
- Scala TreeSet -() method with example
- Scala TreeSet ++() method with example
- Scala TreeSet max() method with example
- Scala TreeSet last() method with example
- Scala TreeSet +() method with example
- Scala TreeSet map() method with example
- Scala TreeSet toString() method with example
- Scala TreeSet toArray() method with example
- Scala TreeSet toList() method with example
- Scala TreeSet toBuffer() method with example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.