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

Method __idiv__

numpy/lib/user_array.py:94–96  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

92 return self._rc(divide(asarray(other), self.array))
93
94 def __idiv__(self, other):
95 divide(self.array, other, self.array)
96 return self
97
98 def __mod__(self, other):
99 return self._rc(remainder(self.array, other))

Callers

nothing calls this directly

Calls 1

divideFunction · 0.85

Tested by

no test coverage detected