(left: Expr, right: Expr)
| 5729 | } |
| 5730 | |
| 5731 | fn is_not_distinct_from(left: Expr, right: Expr) -> Expr { |
| 5732 | Expr::BinaryExpr(BinaryExpr::new( |
| 5733 | Box::new(left), |
| 5734 | Operator::IsNotDistinctFrom, |
| 5735 | Box::new(right), |
| 5736 | )) |
| 5737 | } |
| 5738 | |
| 5739 | fn is_distinct_from(left: Expr, right: Expr) -> Expr { |
| 5740 | Expr::BinaryExpr(BinaryExpr::new( |
searching dependent graphs…