operator ^ method

  1. @nonVirtual
T operator ^(
  1. T other
)

Bitwise XOR operator.

Implementation

@nonVirtual
T operator ^(T other) => _wrapSignAware(value ^ other.value);