| 1077 | /// Format list of arguments to the stream according to given format string. |
| 1078 | template<typename... Args> |
| 1079 | void format(std::ostream& out, FormatStringCheck<sizeof...(Args)> fmt, const Args&... args) |
| 1080 | { |
| 1081 | vformat(out, fmt, makeFormatList(args...)); |
| 1082 | } |
| 1083 | |
| 1084 | /// Format list of arguments according to the given format string and return |
| 1085 | /// the result as a string. |
no test coverage detected