Divide other into self, and return a new masked array.
(self, other)
| 4369 | return true_divide(other, self) |
| 4370 | |
| 4371 | def __floordiv__(self, other): |
| 4372 | """ |
| 4373 | Divide other into self, and return a new masked array. |
| 4374 | |
| 4375 | """ |
| 4376 | if self._delegate_binop(other): |
| 4377 | return NotImplemented |
| 4378 | return floor_divide(self, other) |
| 4379 | |
| 4380 | def __rfloordiv__(self, other): |
| 4381 | """ |
nothing calls this directly
no test coverage detected