Inplace element-wise addition with given scalar or sequence.
(self, e)
| 53 | return self.__operate(operator.add, e, inplace) |
| 54 | |
| 55 | def add_(self, e): |
| 56 | """ |
| 57 | Inplace element-wise addition with given scalar or sequence. |
| 58 | """ |
| 59 | warn() |
| 60 | self[:] = self.__operate(operator.add, e, True) |
| 61 | return self |
| 62 | |
| 63 | def sub(self, e, inplace=False): |
| 64 | """ |