(self, other: AbstractSet[Hashable])
| 222 | return self._from_list([a for a in self._list if a in other_set]) |
| 223 | |
| 224 | def __sub__(self, other: AbstractSet[Hashable]) -> OrderedSet[_T]: |
| 225 | return self.difference(other) |
| 226 | |
| 227 | # @cython.ccall # cdef function cannot have star argument |
| 228 | def intersection_update(self, *other: Iterable[Hashable]) -> None: |
nothing calls this directly
no test coverage detected