Exemple #1
0
 public static BoolExpression operator>(IntExpression lhs, IntExpression rhs)
 {
     return(CompareOp.CreateLessThan(rhs, lhs)); //(a>b) is the same as (b<a)
 }
Exemple #2
0
 public static BoolExpression operator<(IntExpression lhs, IntExpression rhs)
 {
     return(CompareOp.CreateLessThan(lhs, rhs));
 }