public static bool IsLess(double x, double y) { return(IntValue.IsNegative(x.CompareTo(y))); }
public static bool IsLess(decimal x, decimal y) { return(IntValue.IsNegative(x.CompareTo(y))); }
public static bool IsNotLess(bool x, bool y) { return(!IntValue.IsNegative(x.CompareTo(y))); }