println overloads
<fmt/base.h>Formats args according to specifications in fmt and writes the output to stdout followed by a newline.
template<typename... T>
[[always_inline]]
void
println(
format_string<T...> fmt,
T...&&... args);
» more...
template<typename... T>
void
println(
wformat_string<T...> fmt,
T...&&... args);
» more...
template<typename... T>
void
println(
std::ostream& os,
format_string<T...> fmt,
T...&&... args);
» more...
template<typename... T>
void
println(
std::wostream& os,
wformat_string<T...> fmt,
T...&&... args);
» more...
Formats args according to specifications in fmt and writes the output to the file f followed by a newline.
template<typename... T>
[[always_inline]]
void
println(
FILE* f,
format_string<T...> fmt,
T...&&... args);
» more...
template<typename... T>
void
println(
FILE* f,
wformat_string<T...> fmt,
T...&&... args);
» more...