(self, other: Self)
| 3854 | } |
| 3855 | |
| 3856 | pub fn or(self, other: Self) -> Self { |
| 3857 | HirScalarExpr::call_variadic(Or, vec![self, other]) |
| 3858 | } |
| 3859 | |
| 3860 | pub fn and(self, other: Self) -> Self { |
| 3861 | HirScalarExpr::call_variadic(And, vec![self, other]) |
no outgoing calls
no test coverage detected