operator ^ method

Uint32 operator ^(
  1. Uint32 other
)

Bitwise XOR operator.

Implementation

Uint32 operator ^(Uint32 other) => Uint32.from(value ^ other.value);