(self, other)
| 140 | return self |
| 141 | |
| 142 | def __irshift__(self, other): |
| 143 | right_shift(self.array, other, self.array) |
| 144 | return self |
| 145 | |
| 146 | def __and__(self, other): |
| 147 | return self._rc(bitwise_and(self.array, other)) |
nothing calls this directly
no test coverage detected