Computes (in-place) the remainder between elements in this Array and given scalar or sequence, element-wise.
(self, e)
| 126 | return self.__operate(operator.mod, e, inplace) |
| 127 | |
| 128 | def mod_(self, e): |
| 129 | """ |
| 130 | Computes (in-place) the remainder between elements in this Array |
| 131 | and given scalar or sequence, element-wise. |
| 132 | """ |
| 133 | warn() |
| 134 | self[:] = self.__operate(operator.mod, e, True) |
| 135 | return self |
| 136 | |
| 137 | def bitwiseAnd(self, e, inplace=False): |
| 138 | """ |