fmt::println

Formats args according to specifications in fmt and writes the output to stdout followed by a newline.

Synopsis

Declared in <fmt/base.h>

template<typename... T>
void
println(
    format_string<T...> fmt,
    T&&... args);

Parameters

NameDescription
fmtThe format string.
argsThe arguments to format.