public bool GreaterThan(KNumberValue other) { return(Value > other.Value); }
public bool NotEquals(KNumberValue other) { return(!Equals(other)); }
public bool Equals(KNumberValue other) { return(Value == other.Value); }
public bool LessThanOrEquals(KNumberValue other) { return(Value <= other.Value); }
public bool LessThan(KNumberValue other) { return(Value < other.Value); }
public bool GreaterThanOrEquals(KNumberValue other) { return(Value >= other.Value); }