MCPcopy
hub / github.com/dask/dask / all

Method all

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

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