MCPcopy Create free account
hub / github.com/Lauriat/funct / mod

Method mod

funct/Array.py:121–126  ·  view source on GitHub ↗

Computes the remainder between elements in this Array and given scalar or sequence, element-wise.

(self, e, inplace=False)

Source from the content-addressed store, hash-verified

119 return self
120
121 def mod(self, e, inplace=False):
122 """
123 Computes the remainder between elements in this Array
124 and given scalar or sequence, element-wise.
125 """
126 return self.__operate(operator.mod, e, inplace)
127
128 def mod_(self, e):
129 """

Callers

nothing calls this directly

Calls 1

__operateMethod · 0.95

Tested by

no test coverage detected