operator & method

LogicValue operator &(
  1. LogicValue other
)

Bitwise AND operation.

Implementation

LogicValue operator &(LogicValue other) =>
    _twoInputBitwiseOp(other, (a, b) => a._and2(b));