(self, *s: Iterable[_S])
| 1940 | return set(iter(self)) |
| 1941 | |
| 1942 | def union(self, *s: Iterable[_S]) -> MutableSet[Union[_T, _S]]: |
| 1943 | return set(self).union(*s) |
| 1944 | |
| 1945 | def __or__(self, __s: AbstractSet[_S]) -> MutableSet[Union[_T, _S]]: |
| 1946 | if not collections._set_binops_check_strict(self, __s): |
no outgoing calls
no test coverage detected