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

Method __rfloordiv__

lib/sqlalchemy/sql/operators.py:2087–2093  ·  view source on GitHub ↗

Implement the ``//`` operator in reverse. See :meth:`.ColumnOperators.__floordiv__`.

(self, other: Any)

Source from the content-addressed store, hash-verified

2085 return self.operate(floordiv, other)
2086
2087 def __rfloordiv__(self, other: Any) -> ColumnOperators:
2088 """Implement the ``//`` operator in reverse.
2089
2090 See :meth:`.ColumnOperators.__floordiv__`.
2091
2092 """
2093 return self.reverse_operate(floordiv, other)
2094
2095 def __pow__(self, other: Any) -> ColumnOperators:
2096 """Implement the ``**`` operator.

Callers

nothing calls this directly

Calls 1

reverse_operateMethod · 0.95

Tested by

no test coverage detected