fmt::vprint_buffered

Formats args according to specifications in fmt into a buffer and writes the buffer to the file f in a single write.

Synopsis

Declared in <fmt/base.h>

void
vprint_buffered(
    FILE* f,
    string_view fmt,
    format_args args);

Parameters

NameDescription
fThe file to write to.
fmtThe format string.
argsThe type-erased arguments to format.