operator < method

bool operator <(
  1. Uint64 other
)

Determines structural bounds dynamically using unsigned comparison mechanisms for 64-bit limits.

Implementation

bool operator <(Uint64 other) => (value ^ 0x8000000000000000) < (other.value ^ 0x8000000000000000);