Implement the ``//`` operator in reverse. See :meth:`.ColumnOperators.__floordiv__`.
(self, other: Any)
| 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. |
nothing calls this directly
no test coverage detected