예제 #1
0
파일: Util.cs 프로젝트: zvonimir/corral
 public static HashSet <T> Union <T>(this HashSet <T> a, HashSet <T> b)
 {
     return(HashSetExtras <T> .Union(a, b));
 }
예제 #2
0
파일: Util.cs 프로젝트: zvonimir/corral
 public static HashSet <T> Intersection <T>(this HashSet <T> a, HashSet <T> b)
 {
     return(HashSetExtras <T> .Intersection(a, b));
 }
예제 #3
0
파일: Util.cs 프로젝트: zvonimir/corral
 public static HashSet <T> Difference <T>(this HashSet <T> a, HashSet <T> b)
 {
     return(HashSetExtras <T> .Difference(a, b));
 }