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

Method __rlshift__

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

Source from the content-addressed store, hash-verified

130 return self._rc(right_shift(self.array, other))
131
132 def __rlshift__(self, other):
133 return self._rc(left_shift(other, self.array))
134
135 def __rrshift__(self, other):
136 return self._rc(right_shift(other, self.array))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
left_shiftFunction · 0.90

Tested by

no test coverage detected