I was going through self learning of std::make_unique functionality where I found the below declaration at cppreference.com
template< class T, class... Args >
unique_ptr<T> make_unique( Args&&... args );
I am completely not able to understand the signature of the method / function above.