operator ^ method

LogicValue operator ^(
  1. LogicValue other
)

Bitwise XOR operation.

Implementation

LogicValue operator ^(LogicValue other) =>
    _twoInputBitwiseOp(other, (a, b) => a._xor2(b));