Exemple #1
0
 public virtual Expression AddWith(Irrational other)
 {
     return(new Error(this, "Don't support adding " + other.GetType().Name));
 }
Exemple #2
0
 public virtual Expression GreaterThan(Irrational other)
 {
     return(new Error(this, "Don't support greater than " + other.GetType().Name));
 }
Exemple #3
0
 public virtual Expression LesserThanOrEqualTo(Irrational other)
 {
     return(new Error(this, "Don't support lesser than or equal " + other.GetType().Name));
 }
Exemple #4
0
 public virtual Expression OrWith(Irrational other)
 {
     return(new Error(this, "Don't support or with " + other.GetType().Name));
 }