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

Method __rshift__

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

Source from the content-addressed store, hash-verified

127 return self._rc(left_shift(self.array, other))
128
129 def __rshift__(self, other):
130 return self._rc(right_shift(self.array, other))
131
132 def __rlshift__(self, other):
133 return self._rc(left_shift(other, self.array))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
right_shiftFunction · 0.90

Tested by

no test coverage detected