(self, other: Expr)
| 170 | return _binary_rhs_helper(other) |
| 171 | |
| 172 | def __mul__(self, other: Expr) -> "ExprWithOp": |
| 173 | return _binary_op_helper(self, other, _op_ffi_api.multiply) # type: ignore |
| 174 | |
| 175 | def __rmul__(self, other: Expr) -> "ExprWithOp": |
| 176 | return self.__mul__(other) |
no test coverage detected