Computes the remainder between elements in this Array and given scalar or sequence, element-wise.
(self, e, inplace=False)
| 119 | return self |
| 120 | |
| 121 | def mod(self, e, inplace=False): |
| 122 | """ |
| 123 | Computes the remainder between elements in this Array |
| 124 | and given scalar or sequence, element-wise. |
| 125 | """ |
| 126 | return self.__operate(operator.mod, e, inplace) |
| 127 | |
| 128 | def mod_(self, e): |
| 129 | """ |