如何在可变参数模板中冒泡最后一个元素?

时间:2017-11-23 16:40:45

标签: c++ c++14

我有模板函数,可以将变量模板作为(例如)(int, int, double)

template<class... Arg>
void
bubble(const Arg &...arg)
{ another_function(arg...); }

在函数内部,我必须使用不同的参数顺序(double, int, int)进行调用。我该如何实现呢?

1 个答案:

答案 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...>{});
}