Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/numpy/numpy
/ __iadd__
Method
__iadd__
numpy/lib/_user_array_impl.py:102–104 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
100
__radd__ = __add__
101
102
def
__iadd__(self, other):
103
add(self.array, other, self.array)
104
return
self
105
106
def
__sub__(self, other):
107
return
self._rc(self.array - asarray(other))
Callers
nothing calls this directly
Calls
1
add
Function · 0.85
Tested by
no test coverage detected