MCPcopy
hub / github.com/dask/dask / f

Method f

dask/array/numpy_compat.py:124–129  ·  view source on GitHub ↗
(x, **kwargs)

Source from the content-addressed store, hash-verified

122 """
123
124 def f(x, **kwargs):
125 if not self.recurse_if(x):
126 return f_map(x, **kwargs)
127 else:
128 next_kwargs = f_kwargs(**kwargs)
129 return f_reduce((f(xi, **next_kwargs) for xi in x), **kwargs)
130
131 return f(x, **kwargs)
132

Callers

nothing calls this directly

Calls 1

fFunction · 0.50

Tested by

no test coverage detected