(self, *other: Iterable[Hashable])
| 249 | |
| 250 | # @cython.ccall # cdef function cannot have star argument |
| 251 | def difference_update(self, *other: Iterable[Hashable]) -> None: |
| 252 | set.difference_update(self, *other) |
| 253 | self._list = [a for a in self._list if a in self] |
| 254 | |
| 255 | def __isub__(self, other: AbstractSet[Hashable]) -> OrderedSet[_T]: |
| 256 | self.difference_update(other) |
no outgoing calls