24 static void add_one(
const T &arg, std::stringstream &ss)
29 static void print_more(std::stringstream &)
33 template <
typename T,
typename... Args>
34 static void print_more(std::stringstream &ss,
const T &arg, Args... args)
37 print_more(ss, args...);
43 template <
typename... Args>
47 print_more(ss, args...);