(self, *s: Iterable[Any])
| 1968 | return self |
| 1969 | |
| 1970 | def intersection(self, *s: Iterable[Any]) -> MutableSet[_T]: |
| 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): |
no outgoing calls
no test coverage detected