Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC++variadic templatesSingle-choice MCQ

In a variadic template, which expansion correctly forwards every argument exactly once into a function call?

template <typename F, typename... Args> auto call(F&& f, Args&&... args);