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