MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / vformat

Function vformat

src/tinyformat.h:957–960  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

955/// The name vformat() is chosen for the semantic similarity to vprintf(): the
956/// list of format arguments is held in a single function argument.
957inline void vformat(std::ostream& out, const char* fmt, FormatListRef list)
958{
959 detail::formatImpl(out, fmt, list.m_formatters, list.m_N);
960}
961
962
963#ifdef TINYFORMAT_USE_VARIADIC_TEMPLATES

Callers 1

formatFunction · 0.85

Calls 1

formatImplFunction · 0.85

Tested by

no test coverage detected