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

Function divmod

dask/array/_array_expr/_ufunc.py:342–345  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

340
341@derived_from(np)
342def divmod(x, y):
343 res1 = x // y
344 res2 = x % y
345 return res1, res2

Callers 3

__divmod__Method · 0.90
__rdivmod__Method · 0.90
test_divmodFunction · 0.50

Calls

no outgoing calls

Tested by 1

test_divmodFunction · 0.40

Used in the wild real call sites across dependent graphs

searching dependent graphs…