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