MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __ge__

Method __ge__

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

795 return self.operate(gt, other)
796
797 def __ge__(self, other: Any) -> ColumnOperators:
798 """Implement the ``>=`` operator.
799
800 In a column context, produces the clause ``a >= b``.
801
802 """
803 return self.operate(ge, other)
804
805 def __neg__(self) -> ColumnOperators:
806 """Implement the ``-`` operator.

Callers

nothing calls this directly

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected