Implement the ``<`` operator. In a column context, produces the clause ``a < b``.
(self, other: Any)
| 713 | ) -> ColumnOperators: ... |
| 714 | |
| 715 | def __lt__(self, other: Any) -> ColumnOperators: |
| 716 | """Implement the ``<`` operator. |
| 717 | |
| 718 | In a column context, produces the clause ``a < b``. |
| 719 | |
| 720 | """ |
| 721 | return self.operate(lt, other) |
| 722 | |
| 723 | def __le__(self, other: Any) -> ColumnOperators: |
| 724 | """Implement the ``<=`` operator. |