(
self, op: OperatorType, other: Any, **kwargs: 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 |
| 679 | ) -> ColumnElement[Any]: |
| 680 | col = self.__clause_element__() |
| 681 | return op(col._bind_param(op, other), col, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 682 | |
| 683 | def found_in_pep593_annotated(self) -> Any: |
| 684 | # return a blank mapped_column(). This mapped_column()'s |
nothing calls this directly
no test coverage detected