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

Function _numel_arraylike

dask/array/backends.py:273–275  ·  view source on GitHub ↗

Numel implementation for arrays that want to return numel of the same type.

(x, **kwargs)

Source from the content-addressed store, hash-verified

271
272
273def _numel_arraylike(x, **kwargs):
274 """Numel implementation for arrays that want to return numel of the same type."""
275 return _numel(x, coerce_np_ndarray=False, **kwargs)
276
277
278def _numel(x, coerce_np_ndarray: bool, **kwargs):

Callers

nothing calls this directly

Calls 1

_numelFunction · 0.85

Tested by

no test coverage detected