(self, other)
| 82 | __rmul__ = __mul__ |
| 83 | |
| 84 | def __imul__(self, other): |
| 85 | multiply(self.array, other, self.array) |
| 86 | return self |
| 87 | |
| 88 | def __div__(self, other): |
| 89 | return self._rc(divide(self.array, asarray(other))) |
nothing calls this directly
no test coverage detected