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

Method __rmul__

lib/sqlalchemy/sql/operators.py:1956–1962  ·  view source on GitHub ↗

Implement the ``*`` operator in reverse. See :meth:`.ColumnOperators.__mul__`.

(self, other: Any)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

reverse_operateMethod · 0.95

Tested by

no test coverage detected