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