MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / union

Method union

lib/sqlalchemy/ext/associationproxy.py:1942–1943  ·  view source on GitHub ↗
(self, *s: Iterable[_S])

Source from the content-addressed store, hash-verified

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):

Callers 11

__or__Method · 0.95
update_query_pairsMethod · 0.45
create_engineFunction · 0.45
execution_optionsMethod · 0.45
_execute_contextMethod · 0.45
_get_listen_keysMethod · 0.45
executeMethod · 0.45
scalarMethod · 0.45
streamMethod · 0.45
_updateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected