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