(self, other)
| 168 | return elemwise(operator.add, other, self) |
| 169 | |
| 170 | def __mul__(self, other): |
| 171 | return elemwise(operator.mul, self, other) |
| 172 | |
| 173 | def __rmul__(self, other): |
| 174 | return elemwise(operator.mul, other, self) |
nothing calls this directly
no test coverage detected