(self, other)
| 73 | return self._rc(asarray(other) - self.array) |
| 74 | |
| 75 | def __isub__(self, other): |
| 76 | subtract(self.array, other, self.array) |
| 77 | return self |
| 78 | |
| 79 | def __mul__(self, other): |
| 80 | return self._rc(multiply(self.array, asarray(other))) |
nothing calls this directly
no test coverage detected