Example #1
0
 public static HashSet <T> Union <T>(this HashSet <T> a, HashSet <T> b)
 {
     return(HashSetExtras <T> .Union(a, b));
 }
Example #2
0
 public static HashSet <T> Intersection <T>(this HashSet <T> a, HashSet <T> b)
 {
     return(HashSetExtras <T> .Intersection(a, b));
 }
Example #3
0
 public static HashSet <T> Difference <T>(this HashSet <T> a, HashSet <T> b)
 {
     return(HashSetExtras <T> .Difference(a, b));
 }