Format list of arguments to the stream according to the given format string. The name vformat() is chosen for the semantic similarity to vprintf(): the list of format arguments is held in a single function argument.
| 1041 | /// The name vformat() is chosen for the semantic similarity to vprintf(): the |
| 1042 | /// list of format arguments is held in a single function argument. |
| 1043 | inline void vformat(std::ostream& out, const char* fmt, FormatListRef list) |
| 1044 | { |
| 1045 | detail::formatImpl(out, fmt, list.m_args, list.m_N); |
| 1046 | } |
| 1047 | |
| 1048 | |
| 1049 | #ifdef TINYFORMAT_USE_VARIADIC_TEMPLATES |