我有模板函数,可以将变量模板作为(例如)(int, int, double)
template<class... Arg>
void
bubble(const Arg &...arg)
{ another_function(arg...); }
在函数内部,我必须使用不同的参数顺序(double, int, int)
进行调用。我该如何实现呢?
答案 0 :(得分:3)
使用std::index_sequence
,您可以执行以下操作:
template <typename Tuple, std::size_t ... Is>
decltype(auto) bubble_impl(const Tuple& tuple, std::index_sequence<Is...>)
{
constexpr auto size = sizeof...(Is);
return another_function(std::get<(Is + size - 1) % size>(tuple)...);
}
template <class... Args>
decltype(auto) bubble(const Args &...args)
{
return bubble_impl(std::tie(args...), std::index_sequence_for<Args...>{});
}