(
self, op: OperatorType, *other: Any, **kwargs: Any
)
| 479 | return getattr(self.__clause_element__(), key) |
| 480 | |
| 481 | def operate( |
| 482 | self, op: OperatorType, *other: Any, **kwargs: Any |
| 483 | ) -> ColumnElement[Any]: |
| 484 | return op(self.__clause_element__(), *other, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 485 | |
| 486 | def reverse_operate( |
| 487 | self, op: OperatorType, other: Any, **kwargs: Any |
nothing calls this directly
no test coverage detected