[#BloombergLP-bslfmt-println-0ce] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslfmt.adoc[bslfmt]::println :relfileprefix: ../../ :mrdocs: `println` overloads == Synopses Declared in `<bslfmt_print_imp.h>` Write ` ` into `stdout`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bslfmt/println-05.adoc[println](); ---- [.small]#xref:BloombergLP/bslfmt/println-05.adoc[_» more..._]# Write ` ` to the specified `stream`. The behavior is undefined unless `stream` is a valid pointer to an output C stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bslfmt/println-07.adoc[println](std::ostream& stream); ---- [.small]#xref:BloombergLP/bslfmt/println-07.adoc[_» more..._]# Write ` ` to the specified `stream`. The behavior is undefined unless `stream` is a valid pointer to an output C stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bslfmt/println-04.adoc[println](FILE* stream); ---- [.small]#xref:BloombergLP/bslfmt/println-04.adoc[_» more..._]# Format the specified `args` using `bsl::format_to` according to the specification given by the specified `fmt`, append ` `, and write the result of this operation to `stdout`. In the event of formatting error throw the exception `format_error`, in the event of I/O error throw the exception `system_error`, on allocation failure throw `bad_alloc`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... t_ARGS> void xref:BloombergLP/bslfmt/println-09.adoc[println]( bsl::format_string<t_ARGS...> fmt, t_ARGS&&... args); ---- [.small]#xref:BloombergLP/bslfmt/println-09.adoc[_» more..._]# Format the specified `args` using `bsl::format_to` according to the specification given by the specified `fmt`, append ` `, and write the result of this operation to the specified `stream`. In the event of formatting error throw the exception `format_error`, in the event of I/O error throw the exception `system_error`, on allocation failure throw `bad_alloc`. The behavior is undefined unless `stream` is a valid pointer to an output C stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... t_ARGS> void xref:BloombergLP/bslfmt/println-0c4.adoc[println]( std::ostream& stream, bsl::format_string<t_ARGS...> fmt, t_ARGS&&... args); ---- [.small]#xref:BloombergLP/bslfmt/println-0c4.adoc[_» more..._]# Format the specified `args` using `bsl::format_to` according to the specification given by the specified `fmt`, append ` `, and write the result of this operation to the specified `stream`. In the event of formatting error throw the exception `format_error`, in the event of I/O error throw the exception `system_error`, on allocation failure throw `bad_alloc`. The behavior is undefined unless `stream` is a valid pointer to an output C stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... t_ARGS> void xref:BloombergLP/bslfmt/println-03.adoc[println]( FILE* stream, bsl::format_string<t_ARGS...> fmt, t_ARGS&&... args); ---- [.small]#xref:BloombergLP/bslfmt/println-03.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#