(self, other)
| 165 | return elemwise(operator.add, self, other) |
| 166 | |
| 167 | def __radd__(self, other): |
| 168 | return elemwise(operator.add, other, self) |
| 169 | |
| 170 | def __mul__(self, other): |
| 171 | return elemwise(operator.mul, self, other) |
nothing calls this directly
no test coverage detected