| 1087 | /// Format list of arguments to std::cout, according to the given format string |
| 1088 | template<typename... Args> |
| 1089 | void printf(const char* fmt, const Args&... args) |
| 1090 | { |
| 1091 | format(std::cout, fmt, args...); |
| 1092 | } |
| 1093 | |
| 1094 | template<typename... Args> |
| 1095 | void printfln(const char* fmt, const Args&... args) |