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

Method operate

lib/sqlalchemy/orm/properties.py:650–653  ·  view source on GitHub ↗
(
        self, op: OperatorType, *other: Any, **kwargs: Any
    )

Source from the content-addressed store, hash-verified

648 return self.column
649
650 def operate(
651 self, op: OperatorType, *other: Any, **kwargs: Any
652 ) -> ColumnElement[Any]:
653 return op(self.__clause_element__(), *other, **kwargs) # type: ignore[no-any-return] # noqa: E501
654
655 def reverse_operate(
656 self, op: OperatorType, other: Any, **kwargs: Any

Callers

nothing calls this directly

Calls 2

__clause_element__Method · 0.95
opFunction · 0.85

Tested by

no test coverage detected