I'm trying to remove the first element of a variadic template argument. The code goes like this:
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)...); }