(self, other: Expr)
| 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) |
| 177 | |
| 178 | def __truediv__(self, other: Expr) -> "ExprWithOp": |
| 179 | return _binary_op_helper(self, other, _op_ffi_api.divide) # type: ignore |