Exemple #1
0
 public static IPGTerminalSet Intersection(this IPGTerminalSet @this, IPGTerminalSet other)
 {
     return(@this.IntersectionCore(other) ?? other.IntersectionCore(@this));
 }
Exemple #2
0
 public static IPGTerminalSet Subtract(this IPGTerminalSet @this, IPGTerminalSet other)
 {
     return(@this.IntersectionCore(other, true) ?? other.IntersectionCore(@this, false, true));
 }