if(is(type == Setting!U, U...))This is not enough for me - I have many instantiations of Setting struct template and I need all of them, regardless of parameters they wereinstantiated with.
Have you actually tried this snippet? It does exactly that. "U..." is a pattern for variadic template argument list. Constraint will match Setting instance with any number of any template arguments.
