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

Method __rrshift__

lib/sqlalchemy/sql/operators.py:852–859  ·  view source on GitHub ↗

Implement the ``>>`` operator in reverse. Not used by SQLAlchemy core, this is provided for custom operator systems which want to use >> as an extension point.

(self, other: Any)

Source from the content-addressed store, hash-verified

850 return self.operate(rshift, other)
851
852 def __rrshift__(self, other: Any) -> ColumnOperators:
853 """Implement the ``>>`` operator in reverse.
854
855 Not used by SQLAlchemy core, this is provided
856 for custom operator systems which want to use
857 >> as an extension point.
858 """
859 return self.reverse_operate(rshift, other)
860
861 def __matmul__(self, other: Any) -> ColumnOperators:
862 """Implement the ``@`` operator.

Callers

nothing calls this directly

Calls 1

reverse_operateMethod · 0.95

Tested by

no test coverage detected