Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/numpy/numpy
/ __ipow__
Method
__ipow__
numpy/lib/_user_array_impl.py:149–151 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
147
return
self._rc(power(asarray(other), self.array))
148
149
def
__ipow__(self, other):
150
power(self.array, other, self.array)
151
return
self
152
153
def
__lshift__(self, other):
154
return
self._rc(left_shift(self.array, other))
Callers
nothing calls this directly
Calls
1
power
Function · 0.70
Tested by
no test coverage detected