(self, other)
| 119 | __rmul__ = __mul__ |
| 120 | |
| 121 | def __imul__(self, other): |
| 122 | multiply(self.array, other, self.array) |
| 123 | return self |
| 124 | |
| 125 | def __mod__(self, other): |
| 126 | return self._rc(remainder(self.array, other)) |
nothing calls this directly
no test coverage detected