Multiply self by other, and return a new masked array.
(self, other)
| 4338 | return subtract(other, self) |
| 4339 | |
| 4340 | def __mul__(self, other): |
| 4341 | "Multiply self by other, and return a new masked array." |
| 4342 | if self._delegate_binop(other): |
| 4343 | return NotImplemented |
| 4344 | return multiply(self, other) |
| 4345 | |
| 4346 | def __rmul__(self, other): |
| 4347 | """ |
nothing calls this directly
no test coverage detected