(self, iterable: Iterable[Any], /)
| 354 | |
| 355 | @cython.ccall |
| 356 | def issuperset(self, iterable: Iterable[Any], /) -> cython.bint: |
| 357 | other: IdentitySet |
| 358 | if isinstance(iterable, IdentitySet): |
| 359 | other = iterable |
| 360 | else: |
| 361 | other = self.__class__(iterable) |
| 362 | |
| 363 | return self._members.keys() >= other._members.keys() |
| 364 | |
| 365 | def __ge__(self, other: Any) -> bool: |
| 366 | if not isinstance(other, IdentitySet): |
no test coverage detected