/// <summary>
 ///     Visitor pattern method for IntersectOp
 /// </summary>
 /// <param name="op"> The IntersectOp being visited </param>
 /// <param name="n"> The Node that references the Op </param>
 public virtual void Visit(IntersectOp op, Node n)
 {
     VisitSetOp(op, n);
 }
Beispiel #2
0
 // <summary>
 // Copies an IntersectOp
 // </summary>
 // <param name="op"> The Op to Copy </param>
 // <param name="n"> The Node that references the Op </param>
 // <returns> A copy of the original Node that references a copy of the original Op </returns>
 public override Node Visit(IntersectOp op, Node n)
 {
     return CopySetOp(op, n);
 }