tinyformat::printf

Format list of arguments to std::cout, according to the given format string

Synopsis

Declared in <tinyformat.h>

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

Parameters

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