(self, other)
| 144 | return self |
| 145 | |
| 146 | def __and__(self, other): |
| 147 | return self._rc(bitwise_and(self.array, other)) |
| 148 | |
| 149 | def __rand__(self, other): |
| 150 | return self._rc(bitwise_and(other, self.array)) |
nothing calls this directly
no test coverage detected