vprint_unicode overloads

Synopses

Declared in <bslfmt_print_imp.h>

Format type‐erased args per fmt and write the result to stdout.

void
vprint_unicode(
    std::string_view fmt,
    std::format_args args);

Format type‐erased arguments and write the result as Unicode text.

void
vprint_unicode(
    std::ostream& stream,
    std::string_view fmt,
    std::format_args args);

Format type‐erased args per fmt and write the result to stream.

void
vprint_unicode(
    FILE* stream,
    std::string_view fmt,
    std::format_args args);

Parameters

Name

Description

fmt

format string

args

type‐erased format arguments

stream

output stream to which the formatted text is written

Created with MrDocs