operator > method

bool operator >(
  1. U64 other
)
override

Whether this number is numerically greater than other.

Returns true if this number is greater than other. Returns false if this number is smaller than or equal to other or if either value is a NaN value like double.nan.

Implementation

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