This C++ Syntax Has Been Deprecated by the Standard
Last year, I specifically introduced the extremely rare C++ syntax <span>……</span> in the article “What does the …… mean in C++?” which is actually an abbreviated syntax for <span>…, …</span>. The following three forms are completely equivalent: template<class… Args> void f(Args……) {} template<class… Args> void f(Args… …) {} template<class… Args> void f(Args…, …) {} The … Read more