(self, other: AbstractSet[Hashable])
| 189 | return self._from_list([a for a in self._list if a in other_set]) |
| 190 | |
| 191 | def __and__(self, other: AbstractSet[Hashable]) -> OrderedSet[_T]: |
| 192 | return self.intersection(other) |
| 193 | |
| 194 | @cython.ccall |
| 195 | @cython.annotation_typing(False) # avoid cython crash from generic return |
nothing calls this directly
no test coverage detected