MCPcopy Create free account
hub / github.com/numpy/numpy / __irshift__

Method __irshift__

numpy/lib/user_array.py:142–144  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

140 return self
141
142 def __irshift__(self, other):
143 right_shift(self.array, other, self.array)
144 return self
145
146 def __and__(self, other):
147 return self._rc(bitwise_and(self.array, other))

Callers

nothing calls this directly

Calls 1

right_shiftFunction · 0.90

Tested by

no test coverage detected