vprint_nonunicode overloads
Declared in <bslfmt_print_imp.h>
Format type-erased args per fmt and write the result to stdout.
void
vprint_nonunicode(
std::string_view fmt,
std::format_args args);
» more...
Format type-erased arguments and write the result to an output stream.
void
vprint_nonunicode(
std::ostream& stream,
std::string_view fmt,
std::format_args args);
» more...
Format type-erased args per fmt and write the result to stream.
void
vprint_nonunicode(
FILE* stream,
std::string_view fmt,
std::format_args args);
» more...
| Name | Description |
|---|---|
| fmt | format string |
| args | type-erased format arguments |
| stream | output stream to which the formatted text is written |