tinyformat::format

Format list of arguments to the stream according to given format string.

Synopsis

Declared in <tinyformat.h>

template<typename... Args>
void
format(
    std::ostream& out,
    FormatStringCheck<sizeof...(Args)> fmt,
    Args const&... args);

Parameters

NameDescription
outStream to write the formatted output to.
fmtFormat string, checked against the number of arguments.
argsValues to format.