MCPcopy Index your code
hub / github.com/numpy/numpy / __floordiv__

Method __floordiv__

numpy/ma/core.py:4371–4378  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_delegate_binopMethod · 0.95

Tested by

no test coverage detected