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

Method __lt__

lib/sqlalchemy/sql/operators.py:715–721  ·  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

713 ) -> ColumnOperators: ...
714
715 def __lt__(self, other: Any) -> ColumnOperators:
716 """Implement the ``<`` operator.
717
718 In a column context, produces the clause ``a < b``.
719
720 """
721 return self.operate(lt, other)
722
723 def __le__(self, other: Any) -> ColumnOperators:
724 """Implement the ``<=`` operator.

Callers

nothing calls this directly

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected