- array-all a #!key axis (dtype generic-storage-class)procedure
Returns #t if all elements are not #f.
DIFF: This will return slightly different results than numpy's array-all because while scheme and python both have "truthiness" (non #t or True objects evaluate as true for boolean operations), scheme does not have Python's "falsiness" for values like 0, [], "", etc.
Similar: ndarray.all