MCPcopy Create free account
hub / github.com/fmtlib/fmt / println

Function println

include/fmt/base.h:2924–2928  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2922/// to the file `f` followed by a newline.
2923template <typename... T>
2924FMT_INLINE void println(FILE* f, format_string<T...> fmt, T&&... args) {
2925 vargs<T...> va = {{args...}};
2926 if FMT_CONSTEXPR20 (detail::use_utf8) return vprintln(f, fmt.str, va);
2927 detail::vprint_mojibake(f, fmt.str, va, true);
2928}
2929
2930/// Formats `args` according to specifications in `fmt` and writes the output
2931/// to `stdout` followed by a newline.

Callers 5

TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50

Calls 2

vprintlnFunction · 0.70
vprint_mojibakeFunction · 0.70

Tested by 5

TESTFunction · 0.40
TESTFunction · 0.40
TESTFunction · 0.40
TESTFunction · 0.40
TESTFunction · 0.40