| 1077 | /// Format list of arguments to std::cout, according to the given format string |
| 1078 | template<typename... Args> |
| 1079 | void printf(const char* fmt, const Args&... args) |
| 1080 | { |
| 1081 | format(std::cout, fmt, args...); |
| 1082 | } |
| 1083 | |
| 1084 | template<typename... Args> |
| 1085 | void printfln(const char* fmt, const Args&... args) |