(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)) |
| 134 | |
| 135 | def __rrshift__(self, other): |
| 136 | return self._rc(right_shift(other, self.array)) |
nothing calls this directly
no test coverage detected