(self, other)
| 137 | self._rc(remainder(self.array, other))) |
| 138 | |
| 139 | def __rdivmod__(self, other): |
| 140 | return (self._rc(divide(other, self.array)), |
| 141 | self._rc(remainder(other, self.array))) |
| 142 | |
| 143 | def __pow__(self, other): |
| 144 | return self._rc(power(self.array, asarray(other))) |