C++ Parameter packs A template with a parameter pack

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

template<class ... Types> struct Tuple {};

A parameter pack is a template parameter accepting zero or more template arguments. If a template has at least one parameter pack is a variadic template.



Got any C++ Question?