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

Method __imod__

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

Source from the content-addressed store, hash-verified

102 return self._rc(remainder(other, self.array))
103
104 def __imod__(self, other):
105 remainder(self.array, other, self.array)
106 return self
107
108 def __divmod__(self, other):
109 return (self._rc(divide(self.array, other)),

Callers

nothing calls this directly

Calls 1

remainderFunction · 0.85

Tested by

no test coverage detected