Multiply other by self, and return a new masked array.
(self, other)
| 4344 | return multiply(self, other) |
| 4345 | |
| 4346 | def __rmul__(self, other): |
| 4347 | """ |
| 4348 | Multiply other by self, and return a new masked array. |
| 4349 | |
| 4350 | """ |
| 4351 | # In analogy with __rsub__ and __rdiv__, use original order: |
| 4352 | # we get here from `other * self`. |
| 4353 | return multiply(other, self) |
| 4354 | |
| 4355 | def __truediv__(self, other): |
| 4356 | """ |
nothing calls this directly
no test coverage detected