Example #1
0
 public static Boolean operator >=(Decimal64 a, Decimal64 b)
 {
     return(NativeImpl.isGreaterOrEqual(a.Bits, b.Bits));
 }
Example #2
0
 public Boolean IsGreaterOrEqual(Decimal64 that)
 {
     return(NativeImpl.isGreaterOrEqual(Bits, that.Bits));
 }