| 1068 | /// Format list of arguments to std::cout, according to the given format string |
| 1069 | template<typename... Args> |
| 1070 | void printf(const char* fmt, const Args&... args) |
| 1071 | { |
| 1072 | format(std::cout, fmt, args...); |
| 1073 | } |
| 1074 | |
| 1075 | template<typename... Args> |
| 1076 | void printfln(const char* fmt, const Args&... args) |