MCPcopy
hub / github.com/numpy/numpy / __imul__

Method __imul__

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

Source from the content-addressed store, hash-verified

119 __rmul__ = __mul__
120
121 def __imul__(self, other):
122 multiply(self.array, other, self.array)
123 return self
124
125 def __mod__(self, other):
126 return self._rc(remainder(self.array, other))

Callers

nothing calls this directly

Calls 1

multiplyFunction · 0.90

Tested by

no test coverage detected