(self, other)
| 164 | return self |
| 165 | |
| 166 | def __or__(self, other): |
| 167 | return self._rc(bitwise_or(self.array, other)) |
| 168 | |
| 169 | def __ror__(self, other): |
| 170 | return self._rc(bitwise_or(other, self.array)) |
nothing calls this directly
no test coverage detected