(
self, op: OperatorType, other: Any, **kwargs: Any
)
| 4128 | return self.comparator.operate(operators.mirror(op), *other, **kwargs) |
| 4129 | |
| 4130 | def reverse_operate( |
| 4131 | self, op: OperatorType, other: Any, **kwargs: Any |
| 4132 | ) -> ColumnElement[_T]: |
| 4133 | # comparison operators should never call reverse_operate |
| 4134 | assert not operators.is_comparison(op) |
| 4135 | raise exc.ArgumentError( |
| 4136 | "Only comparison operators may be used with ANY/ALL" |
| 4137 | ) |
| 4138 | |
| 4139 | |
| 4140 | class AsBoolean(WrapsColumnExpression[bool], UnaryExpression[bool]): |
nothing calls this directly
no test coverage detected