variadic templates

About this tag
Variadic templates are a C++ feature that allows template definitions to accept an arbitrary number of arguments. On WindowsForum.com, discussions about variadic templates appear in the context of advanced STL training, such as Stephan T. Lavavej's C9 Lectures on Advanced STL. These lectures cover the internal implementation details of the Standard Template Library, requiring a solid understanding of C++ and basic STL concepts. Variadic templates are used to create flexible and type-safe functions and classes that can operate on variable numbers of parameters, making them essential for modern C++ library development and metaprogramming.
  1. News

    Windows 7 C9 Lectures: Stephan T Lavavej - Advanced STL, 6 of n

    There are two STLs: the Standard Template Library and Stephan T. Lavavej Link Removed Advanced STL covers the gory details of the STL's implementation -> you will therefore need to be versed in the basics of STL, competent in C++ (of course), and be able to pay attention! Stephan is a great...
Back
Top