Detect whether all elements of a generic tuple A satisfy the predicate pred.
Returns true for an empty tuple.
static assert( allTuple!(`false`)); static assert( allTuple!(`isIntegral!T`, byte, int)); static assert(!allTuple!("a & 1", 1, 2, 3));
Analog of $(STDREF algorithm, all) for generic tuples except pred must be explicitly specified.
See Implementation
Detect whether all elements of a generic tuple A satisfy the predicate pred.
Returns true for an empty tuple.