MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / format

Function format

src/tinyformat.h:1079–1082  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1077/// Format list of arguments to the stream according to given format string.
1078template<typename... Args>
1079void 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.

Callers 15

mainFunction · 0.70
UseMultiprocessFunction · 0.70
AppInitRawTxFunction · 0.70
OutputTxJSONFunction · 0.70
OutputTxHashFunction · 0.70
OutputTxHexFunction · 0.70
CommandLineRawTxFunction · 0.70
AppInitRPCFunction · 0.70
CallRPCFunction · 0.70
CommandLineRPCFunction · 0.70
bitcoin-cli.cppFile · 0.70
printfFunction · 0.70

Calls 3

vformatFunction · 0.85
makeFormatListFunction · 0.85
strMethod · 0.80

Tested by

no test coverage detected