Codes like:
template <typename... type>
void print(type... pack) {
((std::cout << pack << " "), ...);
}
But I have parameters like:
{ {1, 2, 3}, {4, 5, 6} }
So how can I pass this to the function ? Or, how to expand the parameters pack like this ?