Implement the ``>=`` operator. In a column context, produces the clause ``a >= b``.
(self, other: Any)
| 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. |