(self, rhs: R)
| 69 | BoolExpr::Ne(self.into(), rhs.to_expr()) |
| 70 | } |
| 71 | pub fn gt<R: RHS<T, V>>(self, rhs: R) -> BoolExpr<T> { |
| 72 | BoolExpr::Gt(self.into(), rhs.to_expr()) |
| 73 | } |
| 74 | pub fn lt<R: RHS<T, V>>(self, rhs: R) -> BoolExpr<T> { |
| 75 | BoolExpr::Lt(self.into(), rhs.to_expr()) |
| 76 | } |