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

Method reverse_operate

lib/sqlalchemy/ext/hybrid.py:1874–1877  ·  view source on GitHub ↗
(
        self, op: OperatorType, other: Any, **kwargs: Any
    )

Source from the content-addressed store, hash-verified

1872 return op(self.expression, *other, **kwargs)
1873
1874 def reverse_operate(
1875 self, op: OperatorType, other: Any, **kwargs: Any
1876 ) -> ColumnElement[Any]:
1877 return op(other, self.expression, **kwargs) # type: ignore

Callers

nothing calls this directly

Calls 1

opFunction · 0.85

Tested by

no test coverage detected