(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) |
| 140 | return self |
| 141 | |
| 142 | def __irshift__(self, other): |
| 143 | right_shift(self.array, other, self.array) |
nothing calls this directly
no test coverage detected