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

Which expansion correctly forwards every element of a pack into a tuple while preserving value categories?

template <typename... Ts> auto make(Ts&&... ts) { // which line? }