Divide other into self, and return a new masked array.
(self, other)
| 4282 | return true_divide(other, self) |
| 4283 | |
| 4284 | def __floordiv__(self, other): |
| 4285 | """ |
| 4286 | Divide other into self, and return a new masked array. |
| 4287 | |
| 4288 | """ |
| 4289 | if self._delegate_binop(other): |
| 4290 | return NotImplemented |
| 4291 | return floor_divide(self, other) |
| 4292 | |
| 4293 | def __rfloordiv__(self, other): |
| 4294 | """ |
nothing calls this directly
no test coverage detected