tinyformat::printfln

Format list of arguments to std::cout, then append a newline.

Synopsis

Declared in <tinyformat.h>

template<typename... Args>
void
printfln(
    FormatStringCheck<sizeof...(Args)> fmt,
    Args const&... args);

Parameters

NameDescription
fmtFormat string, checked against the number of arguments.
argsValues to format.