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

Method div_

funct/Array.py:97–103  ·  view source on GitHub ↗

Inplace element-wise division with given scalar or sequence.

(self, e)

Source from the content-addressed store, hash-verified

95 return self.__operate(operator.truediv, e, inplace)
96
97 def div_(self, e):
98 """
99 Inplace element-wise division with given scalar or sequence.
100 """
101 warn()
102 self[:] = self.__operate(operator.truediv, e, True)
103 return self
104
105 def pow(self, e, inplace=False):
106 """

Callers

nothing calls this directly

Calls 1

__operateMethod · 0.95

Tested by

no test coverage detected