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

Method __rtruediv__

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

Source from the content-addressed store, hash-verified

189 return elemwise(operator.truediv, self, other)
190
191 def __rtruediv__(self, other):
192 return elemwise(operator.truediv, other, self)
193
194 def __floordiv__(self, other):
195 return elemwise(operator.floordiv, self, other)

Callers

nothing calls this directly

Calls 1

elemwiseFunction · 0.70

Tested by

no test coverage detected