| 1060 | /// Format list of arguments to the stream according to given format string. |
| 1061 | template<typename... Args> |
| 1062 | void format(std::ostream& out, const char* fmt, const Args&... args) |
| 1063 | { |
| 1064 | vformat(out, fmt, makeFormatList(args...)); |
| 1065 | } |
| 1066 | |
| 1067 | /// Format list of arguments according to the given format string and return |
| 1068 | /// the result as a string. |
no test coverage detected