Returns true if bool(e) is True for all elements in this Array.
(self)
| 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. """ |