(self, other)
| 110 | self._rc(remainder(self.array, other))) |
| 111 | |
| 112 | def __rdivmod__(self, other): |
| 113 | return (self._rc(divide(other, self.array)), |
| 114 | self._rc(remainder(other, self.array))) |
| 115 | |
| 116 | def __pow__(self, other): |
| 117 | return self._rc(power(self.array, asarray(other))) |