Same as std.typetuple anySatisfy, but passes i arguments to F.
Example
template Test(int a, int b, int c) { enum Test = a + b == c; } static assert(!anySatisfyN!(3, Test, 1, 1, 3, 5, 8, 11)); static assert( anySatisfyN!(3, Test, 1, 1, 2, 5, 8, 11));
See Implementation
Same as std.typetuple anySatisfy, but passes i arguments to F.