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

Method __ge__

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

631 return self.operate(gt, other)
632
633 def __ge__(self, other: Any) -> ColumnOperators:
634 """Implement the ``>=`` operator.
635
636 In a column context, produces the clause ``a >= b``.
637
638 """
639 return self.operate(ge, other)
640
641 def __neg__(self) -> ColumnOperators:
642 """Implement the ``-`` operator.

Callers

nothing calls this directly

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected