Return a new expression with bitwise AND
(left: Expr, right: Expr)
| 199 | |
| 200 | /// Return a new expression with bitwise AND |
| 201 | pub fn bitwise_and(left: Expr, right: Expr) -> Expr { |
| 202 | Expr::BinaryExpr(BinaryExpr::new( |
| 203 | Box::new(left), |
| 204 | Operator::BitwiseAnd, |
| 205 | Box::new(right), |
| 206 | )) |
| 207 | } |
| 208 | |
| 209 | /// Return a new expression with bitwise OR |
| 210 | pub fn bitwise_or(left: Expr, right: Expr) -> Expr { |
searching dependent graphs…