(self, *s: Iterable[Any])
| 1948 | return self.union(__s) |
| 1949 | |
| 1950 | def difference(self, *s: Iterable[Any]) -> MutableSet[_T]: |
| 1951 | return set(self).difference(*s) |
| 1952 | |
| 1953 | def __sub__(self, s: AbstractSet[Any]) -> MutableSet[_T]: |
| 1954 | if not collections._set_binops_check_strict(self, s): |
no outgoing calls
no test coverage detected