在编译时生成类型为T的序列



我有以下问题:

template< typename callable, typename T , size_t... N_i>
void foo()
{
  using callable_out_type =  std::result_of_t< callable( /* T , ... , T <- sizeof...(N_i) many */ ) >;
  // ...
}

我想获得callable的结果类型,它将sizeof...(N_i)的许多类型的T参数作为其输入,例如,T==intsizeof...(N_i)==3的情况下为callable(1,2,3)。如何实现这一点?

提前感谢。

我们可以使用类型别名来挂钩N_i的扩展,但总是返回T

template <class T, std::size_t>
using eat_int = T;
template< typename callable, typename T , size_t... N_i>
void foo()
{
  using callable_out_type = std::result_of_t< callable(eat_int<T, N_i>...) >;
  // ...
}

为什么不直接使用:

using callable_out_type = std::result_of_t< callable( decltype(N_i, std::declval<T>())...) >;

你也可以借用哥伦布的答案:

using callable_out_type =  std::result_of_t< callable(std::tuple_element_t<(N_i, 0), std::tuple<T>>...) >;

甚至:

using callable_out_type =  std::result_of_t< callable(std::enable_if_t<(N_i, true), T>...) >;

您可以编写以下帮助程序

template<typename T, size_t>
using type_t = T;
template<typename Callable, typename T, size_t... Is>
auto get_result_of(std::index_sequence<Is...>) -> std::result_of_t<Callable(type_t<T,Is>...)>;
template<typename Callable, typename T, size_t N>
using result_of_n_elements = decltype(get_result_of<Callable, T>(std::make_index_sequence<N>{}));

那么在你的foo中你要写

template< typename callable, typename T , size_t N>
void foo()
{
    using callable_out_type = result_of_n_elements<callable, T, N>;
}

现场演示

相关内容

  • 没有找到相关文章

最新更新