Hi All,Is there already a proposal for making the C++ for loop generic, for example able to print a function parameter pack?
template <typename T, typename... Args>
void printWithSeparator(const T& sep, const Args&... args)
{
((cout << args << sep), ...);
}