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

Method union

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

Source from the content-addressed store, hash-verified

1903 return set(iter(self))
1904
1905 def union(self, *s: Iterable[_S]) -> MutableSet[Union[_T, _S]]:
1906 return set(self).union(*s)
1907
1908 def __or__(self, __s: AbstractSet[_S]) -> MutableSet[Union[_T, _S]]:
1909 return self.union(__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