Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC++perfect forwarding std::forwardSingle-choice MCQ

Is the `T&&` parameter of `push_back` below a forwarding (universal) reference, and why does it matter?

template <typename T> class Vec { public: void push_back(T&& value); // T is the class template parameter };