(
self, op: OperatorType, *other: Any, **kwargs: Any
)
| 648 | return self.column |
| 649 | |
| 650 | def operate( |
| 651 | self, op: OperatorType, *other: Any, **kwargs: Any |
| 652 | ) -> ColumnElement[Any]: |
| 653 | return op(self.__clause_element__(), *other, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 654 | |
| 655 | def reverse_operate( |
| 656 | self, op: OperatorType, other: Any, **kwargs: Any |
nothing calls this directly
no test coverage detected