Divide self into other, and return a new masked array.
(self, other)
| 4291 | return floor_divide(self, other) |
| 4292 | |
| 4293 | def __rfloordiv__(self, other): |
| 4294 | """ |
| 4295 | Divide self into other, and return a new masked array. |
| 4296 | |
| 4297 | """ |
| 4298 | return floor_divide(other, self) |
| 4299 | |
| 4300 | def __pow__(self, other): |
| 4301 | """ |
nothing calls this directly
no test coverage detected