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

Method __rmod__

numpy/lib/_user_array_impl.py:128–129  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

126 return self._rc(remainder(self.array, other))
127
128 def __rmod__(self, other):
129 return self._rc(remainder(other, self.array))
130
131 def __imod__(self, other):
132 remainder(self.array, other, self.array)

Callers

nothing calls this directly

Calls 1

_rcMethod · 0.95

Tested by

no test coverage detected