MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / intersection

Method intersection

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

Source from the content-addressed store, hash-verified

1968 return self
1969
1970 def intersection(self, *s: Iterable[Any]) -> MutableSet[_T]:
1971 return set(self).intersection(*s)
1972
1973 def __and__(self, s: AbstractSet[Any]) -> MutableSet[_T]:
1974 if not collections._set_binops_check_strict(self, 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