| 965 | /// Format list of arguments to the stream according to given format string. |
| 966 | template<typename... Args> |
| 967 | void format(std::ostream& out, const char* fmt, const Args&... args) |
| 968 | { |
| 969 | vformat(out, fmt, makeFormatList(args...)); |
| 970 | } |
| 971 | |
| 972 | /// Format list of arguments according to the given format string and return |
| 973 | /// the result as a string. |
no test coverage detected