operator ^ method

Logic operator ^(
  1. Logic other
)

Logical bitwise XOR.

Implementation

Logic operator ^(Logic other) => Xor2Gate(this, other).out;