MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / format

Function format

inst/include/Rcpp/utils/tinyformat/tinyformat.h:964–967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

962/// Format list of arguments to the stream according to given format string.
963template<typename... Args>
964void format(std::ostream& out, const char* fmt, const Args&... args)
965{
966 vformat(out, fmt, makeFormatList(args...));
967}
968
969/// Format list of arguments according to the given format string and return
970/// the result as a string.

Callers 4

warningFunction · 0.85
stopFunction · 0.85
printfFunction · 0.85
printflnFunction · 0.85

Calls 2

vformatFunction · 0.85
makeFormatListFunction · 0.85

Tested by

no test coverage detected