Create a predicate that checks if this expression is greater or equal to a and less than or equal to b.
a
b
Expr betweenIn(Object a, Object b) => and(ge(this, $(a)), le(this, $(b)));