public bool IsLess(FUInt128 other) { if (Hi == other.Hi) { return(Lo < other.Lo); } return(Hi < other.Hi); }
public bool IsGreater(FUInt128 other) { if (Hi == other.Hi) { return(Lo > other.Lo); } return(Hi > other.Hi); }