(self, other: object)
| 86 | return self.__repr__() |
| 87 | |
| 88 | def __eq__(self, other: object) -> bool: |
| 89 | if isinstance(other, OrderedSet): |
| 90 | return len(self) == len(other) and list(self) == list(other) |
| 91 | other = t.cast(t.Iterable[str], other) |
| 92 | return not self.isdisjoint(other) |
nothing calls this directly
no outgoing calls
no test coverage detected