MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __lt__

Method __lt__

lib/sqlalchemy/sql/operators.py:551–557  ·  view source on GitHub ↗

Implement the ``<`` operator. In a column context, produces the clause ``a < b``.

(self, other: Any)

Source from the content-addressed store, hash-verified

549 ) -> ColumnOperators: ...
550
551 def __lt__(self, other: Any) -> ColumnOperators:
552 """Implement the ``<`` operator.
553
554 In a column context, produces the clause ``a < b``.
555
556 """
557 return self.operate(lt, other)
558
559 def __le__(self, other: Any) -> ColumnOperators:
560 """Implement the ``<=`` operator.

Callers

nothing calls this directly

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected