MCPcopy Create free account
hub / github.com/numpy/numpy / __rfloordiv__

Method __rfloordiv__

numpy/ma/core.py:4293–4298  ·  view source on GitHub ↗

Divide self into other, and return a new masked array.

(self, other)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

floor_divideFunction · 0.85

Tested by

no test coverage detected