all_match


Description:

public Future<bool?> all_match (Predicate<G> pred)

Returns whether or not all elements of this seq match the given predicate. If the seq is empty, the result is true.

This is a short-circuiting terminal operation.

Parameters:

pred

a non-interfering and stateless predicate

Returns:

a future of the result -- true if either all elements match the given predicate or the seq is empty, otherwise false