Implement the ``-`` operator. In a column context, produces the clause ``-a``.
(self)
| 639 | return self.operate(ge, other) |
| 640 | |
| 641 | def __neg__(self) -> ColumnOperators: |
| 642 | """Implement the ``-`` operator. |
| 643 | |
| 644 | In a column context, produces the clause ``-a``. |
| 645 | |
| 646 | """ |
| 647 | return self.operate(neg) |
| 648 | |
| 649 | def __contains__(self, other: Any) -> ColumnOperators: |
| 650 | return self.operate(contains, other) |