Beispiel #1
0
 public bool IsLess(FUInt128 other)
 {
     if (Hi == other.Hi)
     {
         return(Lo < other.Lo);
     }
     return(Hi < other.Hi);
 }
Beispiel #2
0
 public bool IsGreater(FUInt128 other)
 {
     if (Hi == other.Hi)
     {
         return(Lo > other.Lo);
     }
     return(Hi > other.Hi);
 }