MCPcopy Create free account
hub / github.com/dask/dask / coerce

Function coerce

dask/array/_array_expr/_overlap.py:711–714  ·  view source on GitHub ↗
(xs, arg, fn)

Source from the content-addressed store, hash-verified

709 # Coerce depth and boundary arguments to lists of individual
710 # specifications for each array argument
711 def coerce(xs, arg, fn):
712 if not isinstance(arg, list):
713 arg = [arg] * len(xs)
714 return [fn(x.ndim, a) for x, a in zip(xs, arg)]
715
716 depth = coerce(args, depth, coerce_depth)
717 boundary = coerce(args, boundary, coerce_boundary)

Callers 1

map_overlapFunction · 0.70

Calls 1

fnFunction · 0.85

Tested by

no test coverage detected