/// <summary> /// Returns the bitwise OR 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.Or(C1, C2)); }
public override Cell Evaluate(SpoolSpace Memory) { return(CellOperations.Or(this._Children[0].Evaluate(Memory), this._Children[1].Evaluate(Memory).valueINT)); }