如果constexpr
包含match
的实例,我将如何编写模板或Ts
代码以使A
成立?
template <std::uint32_t, int, int>
struct A;
template <typename... Ts>
struct X
{
constexpr bool match = ???;
};
答案 0 :(得分:10)
写一个特质:
template<class>
struct is_A : std::false_type {};
template<std::uint32_t X, int Y, int Z>
struct is_A<A<X,Y,Z>> : std::true_type {};
然后使用它:
template <typename... Ts>
struct X
{
constexpr bool match = std::disjunction_v<is_A<Ts>...>;
};
有关C ++ 11中std::disjunction
的实现,请参阅cppreference。