Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

variadic template in c++

template<class... Types>
struct Tuple {};
 
Tuple<> t0;           // Types contains no arguments
Tuple<int> t1;        // Types contains one argument: int
Tuple<int, float> t2; // Types contains two arguments: int and float
Tuple<0> t3;          // error: 0 is not a type
Source by en.cppreference.com #
 
PREVIOUS NEXT
Tagged: #variadic #template
ADD COMMENT
Topic
Name
3+9 =