[#BloombergLP-bslfmt-print-054] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslfmt.adoc[bslfmt]::print :relfileprefix: ../../ :mrdocs: `print` overloads == Synopses Declared in `<bslfmt_print_imp.h>` Format `args` per `fmt` and write the result to `stdout`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... t_ARGS> void xref:BloombergLP/bslfmt/print-05d.adoc[print]( bsl::format_string<t_ARGS...> fmt, t_ARGS&&... args); ---- [.small]#xref:BloombergLP/bslfmt/print-05d.adoc[_» more..._]# Format arguments and write the result to an output stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... t_ARGS> void xref:BloombergLP/bslfmt/print-02.adoc[print]( std::ostream& stream, bsl::format_string<t_ARGS...> fmt, t_ARGS&&... args); ---- [.small]#xref:BloombergLP/bslfmt/print-02.adoc[_» more..._]# Format `args` per `fmt` and write the result to `stream`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... t_ARGS> void xref:BloombergLP/bslfmt/print-09.adoc[print]( FILE* stream, bsl::format_string<t_ARGS...> fmt, t_ARGS&&... args); ---- [.small]#xref:BloombergLP/bslfmt/print-09.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *fmt* | format string | *args* | values to be formatted | *stream* | output stream to which the formatted text is written |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#