Implement the ``<`` operator. In a column context, produces the clause ``a < b``.
(self, other: Any)
| 549 | ) -> ColumnOperators: ... |
| 550 | |
| 551 | def __lt__(self, other: Any) -> ColumnOperators: |
| 552 | """Implement the ``<`` operator. |
| 553 | |
| 554 | In a column context, produces the clause ``a < b``. |
| 555 | |
| 556 | """ |
| 557 | return self.operate(lt, other) |
| 558 | |
| 559 | def __le__(self, other: Any) -> ColumnOperators: |
| 560 | """Implement the ``<=`` operator. |