(self, other)
| 102 | return self._rc(remainder(other, self.array)) |
| 103 | |
| 104 | def __imod__(self, other): |
| 105 | remainder(self.array, other, self.array) |
| 106 | return self |
| 107 | |
| 108 | def __divmod__(self, other): |
| 109 | return (self._rc(divide(self.array, other)), |
nothing calls this directly
no test coverage detected