MCPcopy Create free account
hub / github.com/Lauriat/funct / all

Method all

funct/Array.py:859–861  ·  view source on GitHub ↗

Returns true if bool(e) is True for all elements in this Array.

(self)

Source from the content-addressed store, hash-verified

857 return Array(itertools.zip_longest(self, *args, fillvalue=default))
858
859 def all(self):
860 """ Returns true if bool(e) is True for all elements in this Array. """
861 return all(self)
862
863 def any(self):
864 """ Returns true if bool(e) is True for any element e in this Array. """

Callers 1

testMethod · 0.80

Calls

no outgoing calls

Tested by 1

testMethod · 0.64