Method
reverse_operate
(
self, op: operators.OperatorType, other: Any, **kwargs: Any
)
Source from the content-addressed store, hash-verified
| 1596 | return op(self.comparator, *other, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 1597 | |
| 1598 | def reverse_operate( |
| 1599 | self, op: operators.OperatorType, other: Any, **kwargs: Any |
| 1600 | ) -> ColumnElement[Any]: |
| 1601 | return op(other, self.comparator, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 1602 | |
| 1603 | def _bind_param( |
| 1604 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected