Detect whether a generic tuple A contains an element satisfying the predicate pred.
static assert(!anyTuple!(`true`)); static assert( anyTuple!(`isIntegral!T`, float, int)); static assert(!anyTuple!(`a < 2`, 2, 3));
Analog of $(STDREF algorithm, any) for generic tuples except pred must be explicitly specified.
See Implementation
Detect whether a generic tuple A contains an element satisfying the predicate pred.