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