MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __iand__

Method __iand__

lib/sqlalchemy/ext/mutable.py:1029–1031  ·  view source on GitHub ↗
(self, other: AbstractSet[object])

Source from the content-addressed store, hash-verified

1027 return self
1028
1029 def __iand__(self, other: AbstractSet[object]) -> MutableSet[_T]:
1030 self.intersection_update(other)
1031 return self
1032
1033 def __ixor__(self, other: AbstractSet[_T]) -> MutableSet[_T]: # type: ignore[override,misc] # noqa: E501
1034 self.symmetric_difference_update(other)

Callers

nothing calls this directly

Calls 1

intersection_updateMethod · 0.95

Tested by

no test coverage detected