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