(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) |
| 174 | return self |
| 175 | |
| 176 | def __pos__(self): |
| 177 | return self._rc(self.array) |
nothing calls this directly
no test coverage detected