Multiply self by other, and return a new masked array.
(self, other)
| 4242 | return subtract(other, self) |
| 4243 | |
| 4244 | def __mul__(self, other): |
| 4245 | "Multiply self by other, and return a new masked array." |
| 4246 | if self._delegate_binop(other): |
| 4247 | return NotImplemented |
| 4248 | return multiply(self, other) |
| 4249 | |
| 4250 | def __rmul__(self, other): |
| 4251 | """ |
nothing calls this directly
no test coverage detected