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

Method mod_

funct/Array.py:128–135  ·  view source on GitHub ↗

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

(self, e)

Source from the content-addressed store, hash-verified

126 return self.__operate(operator.mod, e, inplace)
127
128 def mod_(self, e):
129 """
130 Computes (in-place) the remainder between elements in this Array
131 and given scalar or sequence, element-wise.
132 """
133 warn()
134 self[:] = self.__operate(operator.mod, e, True)
135 return self
136
137 def bitwiseAnd(self, e, inplace=False):
138 """

Callers

nothing calls this directly

Calls 1

__operateMethod · 0.95

Tested by

no test coverage detected