anySatisfyN

Same as std.typetuple anySatisfy, but passes i arguments to F.

Members

Manifest constants

anySatisfyN
enum anySatisfyN;
Undocumented in source.
anySatisfyN
enum anySatisfyN;
Undocumented in source.
anySatisfyN
enum anySatisfyN;
Undocumented in source.
anySatisfyN
enum anySatisfyN;
Undocumented in source.
anySatisfyN
enum anySatisfyN;
Undocumented in source.

Examples

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)); 

Meta