operator ^ method

Uint16 operator ^(
  1. Uint16 other
)

Bitwise XOR operator.

Implementation

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