Esempio n. 1
0
 public bool GreaterThan(KNumberValue other)
 {
     return(Value > other.Value);
 }
Esempio n. 2
0
 public bool NotEquals(KNumberValue other)
 {
     return(!Equals(other));
 }
Esempio n. 3
0
 public bool Equals(KNumberValue other)
 {
     return(Value == other.Value);
 }
Esempio n. 4
0
 public bool LessThanOrEquals(KNumberValue other)
 {
     return(Value <= other.Value);
 }
Esempio n. 5
0
 public bool LessThan(KNumberValue other)
 {
     return(Value < other.Value);
 }
Esempio n. 6
0
 public bool GreaterThanOrEquals(KNumberValue other)
 {
     return(Value >= other.Value);
 }