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

Method __rsub__

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

Source from the content-addressed store, hash-verified

177 return elemwise(operator.sub, self, other)
178
179 def __rsub__(self, other):
180 return elemwise(operator.sub, other, self)
181
182 def __pow__(self, other):
183 return elemwise(operator.pow, self, other)

Callers

nothing calls this directly

Calls 1

elemwiseFunction · 0.70

Tested by

no test coverage detected