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

Method __truediv__

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

Source from the content-addressed store, hash-verified

186 return elemwise(operator.pow, other, self)
187
188 def __truediv__(self, other):
189 return elemwise(operator.truediv, self, other)
190
191 def __rtruediv__(self, other):
192 return elemwise(operator.truediv, other, self)

Callers

nothing calls this directly

Calls 1

elemwiseFunction · 0.70

Tested by

no test coverage detected