XorUnary constructor

XorUnary(
  1. Logic in_, {
  2. String name = 'uxor',
})

Calculates the parity of the bits of in_.

Implementation

XorUnary(Logic in_, {String name = 'uxor'})
    : super((a) => a.xor(), '^', in_, name: name);