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

Method intersection

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

Source from the content-addressed store, hash-verified

1927 return self
1928
1929 def intersection(self, *s: Iterable[Any]) -> MutableSet[_T]:
1930 return set(self).intersection(*s)
1931
1932 def __and__(self, s: AbstractSet[Any]) -> MutableSet[_T]:
1933 return self.intersection(s)

Callers 11

__and__Method · 0.95
intersection_updateMethod · 0.95
__iand__Method · 0.95
_reflect_fkMethod · 0.45
__init__Method · 0.45
_bulk_replaceMethod · 0.45
_bulk_replaceMethod · 0.45
load_attrsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected