/// <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)); }
public override Cell Evaluate(SpoolSpace Memory) { return(CellOperations.Xor(this._Children[0].Evaluate(Memory), this._Children[1].Evaluate(Memory).valueINT)); }