推导出元组的类型

时间:2016-03-16 10:26:01

标签: c++ templates language-lawyer c++14 template-deduction

我的代码是这样的:

template <typename T>
inline typename ::std::enable_if<
  is_std_tuple<T>{},
  T
>::type
get()
{
  // pull tuple's elements from somewhere
}

为了推断元组实例化的模板类型参数,我做了这个演员:

static_cast<T*>(nullptr)

并将其作为参数传递给函数

template <typename ...A>
void deduce_tuple(::std::tuple<A...>* const);

我是否承诺UB?还有更好的方法吗?

1 个答案:

答案 0 :(得分:5)

这里的缺点是我们不能部分专门化功能模板。你的方式没问题,因为我们没有取消引用空指针;我更喜欢使用指定的标签:

template <typename...> struct deduction_tag {};

template <typename... Ts>
std::tuple<Ts...> get(deduction_tag<std::tuple<Ts...>>) {
    // […]
}
template <typename T>
std::enable_if_t<is_std_tuple<T>{}, T> get() {
    return get(deduction_tag<T>{});
}