| 979 | /// Format list of arguments to std::cout, according to the given format string |
| 980 | template<typename... Args> |
| 981 | void printf(const char* fmt, const Args&... args) |
| 982 | { |
| 983 | format(std::cout, fmt, args...); |
| 984 | } |
| 985 | |
| 986 | template<typename... Args> |
| 987 | void printfln(const char* fmt, const Args&... args) |