Ejemplo n.º 1
0
 /// <summary>
 /// Returns the bitwise XOR for all types
 /// </summary>
 /// <param name="C1">Left cell</param>
 /// <param name="C2">AWValue cell</param>
 /// <returns>Cell result</returns>
 public static Cell operator ^(Cell C1, Cell C2)
 {
     return(CellOperations.Xor(C1, C2));
 }
Ejemplo n.º 2
0
 public override Cell Evaluate(SpoolSpace Memory)
 {
     return(CellOperations.Xor(this._Children[0].Evaluate(Memory), this._Children[1].Evaluate(Memory).valueINT));
 }