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

诺亚

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

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)...);
}
诺亚

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

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"

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章