(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)) |
| 171 | |
| 172 | def __ior__(self, other): |
| 173 | bitwise_or(self.array, other, self.array) |
nothing calls this directly
no test coverage detected