MCPcopy Create free account
hub / github.com/ElementsProject/elements / format

Function format

src/tinyformat.h:1062–1065  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1060/// Format list of arguments to the stream according to given format string.
1061template<typename... Args>
1062void format(std::ostream& out, const char* fmt, const Args&... args)
1063{
1064 vformat(out, fmt, makeFormatList(args...));
1065}
1066
1067/// Format list of arguments according to the given format string and return
1068/// the result as a string.

Callers 15

LogMethod · 0.70
AppInitRawTxFunction · 0.70
OutputTxJSONFunction · 0.70
OutputTxHashFunction · 0.70
OutputTxHexFunction · 0.70
CommandLineRawTxFunction · 0.70
AppInitRPCFunction · 0.70
CommandLineRPCFunction · 0.70
mainFunction · 0.70
printfFunction · 0.70
printflnFunction · 0.70
LogConnectFailureFunction · 0.70

Calls 3

vformatFunction · 0.85
makeFormatListFunction · 0.85
strMethod · 0.80

Tested by

no test coverage detected