示例#1
0
 public static bool IsLess(double x, double y)
 {
     return(IntValue.IsNegative(x.CompareTo(y)));
 }
示例#2
0
 public static bool IsLess(decimal x, decimal y)
 {
     return(IntValue.IsNegative(x.CompareTo(y)));
 }
示例#3
0
 public static bool IsNotLess(bool x, bool y)
 {
     return(!IntValue.IsNegative(x.CompareTo(y)));
 }