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

Method all

dask/array/core.py:2518–2529  ·  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

2516 return any(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2517
2518 def all(self, axis=None, keepdims=False, split_every=None, out=None):
2519 """Returns True if all elements evaluate to True.
2520
2521 Refer to :func:`dask.array.all` for full documentation.
2522
2523 See Also
2524 --------
2525 dask.array.all : equivalent function
2526 """
2527 from dask.array.reductions import all
2528
2529 return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2530
2531 def min(self, axis=None, keepdims=False, split_every=None, out=None):
2532 """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