operator <= method

bool operator <=(
  1. Uint64 other
)

Returns true if this bounds-checked value is less than or equal to other.

Implementation

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