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

Method __lshift__

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

Source from the content-addressed store, hash-verified

124 return self
125
126 def __lshift__(self, other):
127 return self._rc(left_shift(self.array, other))
128
129 def __rshift__(self, other):
130 return self._rc(right_shift(self.array, other))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
left_shiftFunction · 0.90

Tested by

no test coverage detected