operator ^ method

Uint64 operator ^(
  1. Uint64 other
)

Bitwise XOR operator.

Implementation

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