| 887 | /// Format list of arguments to the stream according to given format string. |
| 888 | template <typename... Args> |
| 889 | void format(std::ostream &out, const char *fmt, const Args &...args) { |
| 890 | vformat(out, fmt, makeFormatList(args...)); |
| 891 | } |
| 892 | |
| 893 | /// Format list of arguments according to the given format string and return |
| 894 | /// the result as a string. |
no test coverage detected