[#bsl-vformat_to-0c] = xref:bsl.adoc[bsl]::vformat_to :relfileprefix: ../ :mrdocs: `vformat_to` overloads == Synopses Declared in `<bslfmt_format.h>` Format type‐erased `args` per `fmtStr` into the string at `out`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/vformat_to-09.adoc[vformat_to]( xref:bsl/string.adoc[string]* out, std::string_view fmtStr, std::format_args args); ---- [.small]#xref:bsl/vformat_to-09.adoc[_» more..._]# Format type‐erased `args` per `fmtStr` into the string at `out`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/vformat_to-0d.adoc[vformat_to]( xref:bsl/wstring.adoc[wstring]* out, std::wstring_view fmtStr, std::wformat_args args); ---- [.small]#xref:bsl/vformat_to-0d.adoc[_» more..._]# Format type‐erased `args` per `fmtStr` into `out` using locale `loc`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/vformat_to-0f.adoc[vformat_to]( xref:bsl/string.adoc[string]* out, std::locale const& loc, std::string_view fmtStr, std::format_args args); ---- [.small]#xref:bsl/vformat_to-0f.adoc[_» more..._]# Format type‐erased `args` per `fmtStr` into `out` using locale `loc`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/vformat_to-0a.adoc[vformat_to]( xref:bsl/wstring.adoc[wstring]* out, std::locale const& loc, std::wstring_view fmtStr, std::wformat_args args); ---- [.small]#xref:bsl/vformat_to-0a.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *out* | address of the string receiving formatted characters | *fmtStr* | format string | *args* | type‐erased format arguments | *loc* | locale used for locale‐dependent formatting |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#