(self, other)
| 604 | return cls(it) |
| 605 | |
| 606 | def __and__(self, other): |
| 607 | if not isinstance(other, Iterable): |
| 608 | return NotImplemented |
| 609 | return self._from_iterable(value for value in other if value in self) |
| 610 | |
| 611 | __rand__ = __and__ |
| 612 |
nothing calls this directly
no test coverage detected