(
self, op: OperatorType, *other: Any, **kwargs: Any
)
| 670 | return self.column |
| 671 | |
| 672 | def operate( |
| 673 | self, op: OperatorType, *other: Any, **kwargs: Any |
| 674 | ) -> ColumnElement[Any]: |
| 675 | return op(self.__clause_element__(), *other, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 676 | |
| 677 | def reverse_operate( |
| 678 | self, op: OperatorType, other: Any, **kwargs: Any |
nothing calls this directly
no test coverage detected