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

Function arange

dask/array/chunk.py:268–272  ·  view source on GitHub ↗
(start, stop, step, length, dtype, like=None)

Source from the content-addressed store, hash-verified

266
267
268def arange(start, stop, step, length, dtype, like=None):
269 from dask.array.utils import arange_safe
270
271 res = arange_safe(start, stop, step, dtype, like=like)
272 return res[:-1] if len(res) > length else res
273
274
275def linspace(start, stop, num, endpoint=True, dtype=None):

Callers

nothing calls this directly

Calls 1

arange_safeFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…