MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __lt__

Method __lt__

lib/sqlalchemy/util/_collections_cy.py:350–353  ·  view source on GitHub ↗
(self, other: Any)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

issubsetMethod · 0.95

Tested by

no test coverage detected