Element-wise addition with given scalar or sequence.
(self, e, inplace=False)
| 47 | super().__init__(args) |
| 48 | |
| 49 | def add(self, e, inplace=False): |
| 50 | """ |
| 51 | Element-wise addition with given scalar or sequence. |
| 52 | """ |
| 53 | return self.__operate(operator.add, e, inplace) |
| 54 | |
| 55 | def add_(self, e): |
| 56 | """ |