MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / reverse_operate

Method reverse_operate

lib/sqlalchemy/sql/elements.py:1536–1539  ·  view source on GitHub ↗
(
        self, op: operators.OperatorType, other: Any, **kwargs: Any
    )

Source from the content-addressed store, hash-verified

1534 return op(self.comparator, *other, **kwargs) # type: ignore[no-any-return] # noqa: E501
1535
1536 def reverse_operate(
1537 self, op: operators.OperatorType, other: Any, **kwargs: Any
1538 ) -> ColumnElement[Any]:
1539 return op(other, self.comparator, **kwargs) # type: ignore[no-any-return] # noqa: E501
1540
1541 def _bind_param(
1542 self,

Callers

nothing calls this directly

Calls 1

opFunction · 0.85

Tested by

no test coverage detected