Implement the ``%`` operator in reverse. See :meth:`.ColumnOperators.__mod__`.
(self, other: Any)
| 1962 | return self.reverse_operate(mul, other) |
| 1963 | |
| 1964 | def __rmod__(self, other: Any) -> ColumnOperators: |
| 1965 | """Implement the ``%`` operator in reverse. |
| 1966 | |
| 1967 | See :meth:`.ColumnOperators.__mod__`. |
| 1968 | |
| 1969 | """ |
| 1970 | return self.reverse_operate(mod, other) |
| 1971 | |
| 1972 | def between( |
| 1973 | self, cleft: Any, cright: Any, symmetric: bool = False |
nothing calls this directly
no test coverage detected