(self, other)
| 81 | return BinOp(BinOpKind.SUB, self, other, self.type) |
| 82 | |
| 83 | def __mul__(self, other): |
| 84 | other = self._to_expr(other) |
| 85 | return BinOp(BinOpKind.MUL, self, other, self.type) |
| 86 | |
| 87 | def __truediv__(self, other): |
| 88 | other = self._to_expr(other) |