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

Method __radd__

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

Source from the content-addressed store, hash-verified

165 return elemwise(operator.add, self, other)
166
167 def __radd__(self, other):
168 return elemwise(operator.add, other, self)
169
170 def __mul__(self, other):
171 return elemwise(operator.mul, self, other)

Callers

nothing calls this directly

Calls 1

elemwiseFunction · 0.70

Tested by

no test coverage detected