MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __or__

Method __or__

lib/sqlalchemy/ext/associationproxy.py:1908–1909  ·  view source on GitHub ↗
(self, __s: AbstractSet[_S])

Source from the content-addressed store, hash-verified

1906 return set(self).union(*s)
1907
1908 def __or__(self, __s: AbstractSet[_S]) -> MutableSet[Union[_T, _S]]:
1909 return self.union(__s)
1910
1911 def difference(self, *s: Iterable[Any]) -> MutableSet[_T]:
1912 return set(self).difference(*s)

Callers

nothing calls this directly

Calls 1

unionMethod · 0.95

Tested by

no test coverage detected