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

Method all

dask/array/core.py:2526–2537  ·  view source on GitHub ↗

Returns True if all elements evaluate to True. Refer to :func:`dask.array.all` for full documentation. See Also -------- dask.array.all : equivalent function

(self, axis=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

2524 return any(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2525
2526 def all(self, axis=None, keepdims=False, split_every=None, out=None):
2527 """Returns True if all elements evaluate to True.
2528
2529 Refer to :func:`dask.array.all` for full documentation.
2530
2531 See Also
2532 --------
2533 dask.array.all : equivalent function
2534 """
2535 from dask.array.reductions import all
2536
2537 return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2538
2539 def min(self, axis=None, keepdims=False, split_every=None, out=None):
2540 """Return the minimum along a given axis.

Callers 7

issortedFunction · 0.45
takeFunction · 0.45
__setitem__Method · 0.45
allcloseFunction · 0.45
assert_eqFunction · 0.45
_sqrtFunction · 0.45
allcloseFunction · 0.45

Calls 1

allFunction · 0.90

Tested by

no test coverage detected