(self, other: Any)
| 348 | return self.issubset(other) |
| 349 | |
| 350 | def __lt__(self, other: Any) -> bool: |
| 351 | if not isinstance(other, IdentitySet): |
| 352 | return NotImplemented |
| 353 | return len(self) < len(other) and self.issubset(other) |
| 354 | |
| 355 | @cython.ccall |
| 356 | def issuperset(self, iterable: Iterable[Any], /) -> cython.bint: |