(self, other: Self)
| 222 | } |
| 223 | |
| 224 | pub fn or(self, other: Self) -> Self { |
| 225 | MirScalarExpr::call_variadic(Or, vec![self, other]) |
| 226 | } |
| 227 | |
| 228 | pub fn and(self, other: Self) -> Self { |
| 229 | MirScalarExpr::call_variadic(And, vec![self, other]) |
no outgoing calls