MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / reverse_operate

Method reverse_operate

lib/sqlalchemy/sql/elements.py:1598–1601  ·  view source on GitHub ↗
(
        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

Calls 1

opFunction · 0.85

Tested by

no test coverage detected