(self, *s: Iterable[Any])
| 1909 | return self.union(__s) |
| 1910 | |
| 1911 | def difference(self, *s: Iterable[Any]) -> MutableSet[_T]: |
| 1912 | return set(self).difference(*s) |
| 1913 | |
| 1914 | def __sub__(self, s: AbstractSet[Any]) -> MutableSet[_T]: |
| 1915 | return self.difference(s) |
no outgoing calls
no test coverage detected