operator | method

LogicValue operator |(
  1. LogicValue other
)

Bitwise OR operation.

Implementation

LogicValue operator |(LogicValue other) =>
    _twoInputBitwiseOp(other, (a, b) => a._or2(b));