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

Method operate

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

Source from the content-addressed store, hash-verified

1526 ) from err
1527
1528 def operate(
1529 self,
1530 op: operators.OperatorType,
1531 *other: Any,
1532 **kwargs: Any,
1533 ) -> ColumnElement[Any]:
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

Callers 1

operateMethod · 0.45

Calls 1

opFunction · 0.85

Tested by

no test coverage detected