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.
| 881 | /// The name vformat() is chosen for the semantic similarity to vprintf(): the |
| 882 | /// list of format arguments is held in a single function argument. |
| 883 | inline void vformat(std::ostream &out, const char *fmt, FormatListRef list) { |
| 884 | detail::formatImpl(out, fmt, list.m_formatters, list.m_N); |
| 885 | } |
| 886 | |
| 887 | /// Format list of arguments to the stream according to given format string. |
| 888 | template <typename... Args> |
no test coverage detected