Variadic Templates – Recursion – Initializer Lists.

K

Kenshin

Seems to me like the only way to write functions/classes taking
variadic templates is by recursion. Is that true? Can the below work,
for iteration?

template<class… T>
auto func(const T&… t){

std::initializer_list<?> ilist = {t…}; //what should go here <?>//
for(const auto& arg : ilist)
//use arg//
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,481
Members
44,900
Latest member
Nell636132

Latest Threads

Top