Beispiel #1
0
			public __Exp Or(__Exp subExp)
			{
				if (subExp == null) return this;
				__IsAndEffect = false;
				__Nodes.Add(subExp);
				return this;
			}
Beispiel #2
0
			public __Exp And(__Exp subExp)
			{
				if (subExp == null) return this;
				__IsAndEffect = true;
				__Nodes.Add(subExp);
				return this;
			}
Beispiel #3
0
 public __Exp Or(__Exp subExp)
 {
     if (subExp == null)
     {
         return(this);
     }
     __IsAndEffect = false;
     __Nodes.Add(subExp);
     return(this);
 }
Beispiel #4
0
 public __Exp And(__Exp subExp)
 {
     if (subExp == null)
     {
         return(this);
     }
     __IsAndEffect = true;
     __Nodes.Add(subExp);
     return(this);
 }