如何从可变参数模板参数中删除元素?

时间:2019-04-28 01:21:56

标签: c++ visual-c++ c++17 variadic-templates

我正在尝试删除可变参数模板参数的第一个元素。 代码如下:

template<typename ...T>
auto UniversalHook(T... args)
{
    //I want to remove the first element of `args` here, how can I do that?
    CallToOtherFunction(std::forward<T>(args)...);
}

2 个答案:

答案 0 :(得分:4)

如何尝试直接方法。

template<typename IgnoreMe, typename ...T>
auto UniversalHook(IgnoreMe && iamignored, T && ...args)
{
    //I want to remove the first element of `args` here, how can I do that?
    return CallToOtherFunction(std::forward<T>(args)...);
}

(也已修复为使用转发引用,并添加了明显的return

答案 1 :(得分:0)

我得到了一点帮助,找到了解决方法:

int main()
{
    Function(3,5,7);
    return 0;
}
template<typename ...T>
auto CallToAnotherFunction(T&&... args) 
{
    (cout << ... << args);
}

template<typename ...T>
auto Function(T&&... args) {
    /*Return is not needed here*/return [](auto&& /*first*/, auto&&... args_){ 
        return CallToAnotherFunction(std::forward<decltype(args_)>(args_)...); 
    }(std::forward<T>(args)...);
}

//Output is "57"