MCPcopy Index your code
hub / github.com/dask/dask / __rmul__

Method __rmul__

dask/array/_array_expr/_collection.py:173–174  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

171 return elemwise(operator.mul, self, other)
172
173 def __rmul__(self, other):
174 return elemwise(operator.mul, other, self)
175
176 def __sub__(self, other):
177 return elemwise(operator.sub, self, other)

Callers

nothing calls this directly

Calls 1

elemwiseFunction · 0.70

Tested by

no test coverage detected