MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / operate

Method operate

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

Source from the content-addressed store, hash-verified

479 return getattr(self.__clause_element__(), key)
480
481 def operate(
482 self, op: OperatorType, *other: Any, **kwargs: Any
483 ) -> ColumnElement[Any]:
484 return op(self.__clause_element__(), *other, **kwargs) # type: ignore[no-any-return] # noqa: E501
485
486 def reverse_operate(
487 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