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

Method __rrshift__

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

Source from the content-addressed store, hash-verified

133 return self._rc(left_shift(other, self.array))
134
135 def __rrshift__(self, other):
136 return self._rc(right_shift(other, self.array))
137
138 def __ilshift__(self, other):
139 left_shift(self.array, other, self.array)

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
right_shiftFunction · 0.90

Tested by

no test coverage detected