compareTo method
Flips the sign bit on both operands, which turns two's-complement
ordering into plain unsigned ordering — then delegates to
Uint64.compareTo.
Implementation
@override
int compareTo(Int64 other) {
final a = _bits ^ _signMask;
final b = other._bits ^ _signMask;
return a.compareTo(b);
}