I want to determine if any variadic class template is the base of another class. Typically I’d use std::is_base_of, but I don’t think my use case fits, and I’m not sure if there’s already something in std or boost to handle this. I want the variadic base class template’s parameter pack to come from another variadic class template. Here’s some example code that hopefully explains what I want to do:
Usage:
is_variadic_base_of<
VarClassTemplA
, ClassDerivedFromA
, VarClassTemplB //Has param pack I want to use with ClassA
>::value;
Guts:
//test for variadic base of non-variadic
template <template<typename...> class A, typename B, typename... ArgsC>
struct is_variadic_base_of
: std::is_base_of<A<ArgsC...>, B>
{};
Is this possible?
Hope it helps!