Implement the ``*`` operator in reverse. See :meth:`.ColumnOperators.__mul__`.
(self, other: Any)
| 1954 | return self.reverse_operate(sub, other) |
| 1955 | |
| 1956 | def __rmul__(self, other: Any) -> ColumnOperators: |
| 1957 | """Implement the ``*`` operator in reverse. |
| 1958 | |
| 1959 | See :meth:`.ColumnOperators.__mul__`. |
| 1960 | |
| 1961 | """ |
| 1962 | return self.reverse_operate(mul, other) |
| 1963 | |
| 1964 | def __rmod__(self, other: Any) -> ColumnOperators: |
| 1965 | """Implement the ``%`` operator in reverse. |
nothing calls this directly
no test coverage detected