(self, s: AbstractSet[Any])
| 1971 | return set(self).intersection(*s) |
| 1972 | |
| 1973 | def __and__(self, s: AbstractSet[Any]) -> MutableSet[_T]: |
| 1974 | if not collections._set_binops_check_strict(self, s): |
| 1975 | return NotImplemented |
| 1976 | return self.intersection(s) |
| 1977 | |
| 1978 | def intersection_update(self, *s: Iterable[Any]) -> None: |
| 1979 | for other in s: |
nothing calls this directly
no test coverage detected