all(v,f) -- whether each element x of a list or hash table v has f(x) true.
Returns the value true if all elements v#i of the list v yield the value true when the function f is applied, otherwise returns false. For hash tables, the function is applied to all its key/value pairs (k,v), just as with any.
See also:
Ways to use all :