[#BloombergLP-bslim-Printer-printValue-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslim.adoc[bslim]::xref:BloombergLP/bslim/Printer.adoc[Printer]::printValue :relfileprefix: ../../../ :mrdocs: `printValue` overloads == Synopses Declared in `<bslim_printer.h>` Format to the output stream supplied at construction the specified `data`. Format `data` based on the parameterized `TYPE`: [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> void xref:BloombergLP/bslim/Printer/printValue-00.adoc[printValue](TYPE const& data) const; ---- [.small]#xref:BloombergLP/bslim/Printer/printValue-00.adoc[_» more..._]# Format the range `[begin, end)]` to the stream supplied at construction. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ITERATOR> void xref:BloombergLP/bslim/Printer/printValue-060d.adoc[printValue]( ITERATOR const& begin, ITERATOR const& end) const; ---- [.small]#xref:BloombergLP/bslim/Printer/printValue-060d.adoc[_» more..._]# Format `[begin, end)]` using the specified `printFunctionObject`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class ITERATOR, class PRINT_FUNCTOR> void xref:BloombergLP/bslim/Printer/printValue-060c.adoc[printValue]( ITERATOR const& begin, ITERATOR const& end, PRINT_FUNCTOR const& printFunctionObject) const; ---- [.small]#xref:BloombergLP/bslim/Printer/printValue-060c.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *data* | value to format | *begin* | beginning of the range of values to format | *end* | end of the range of values to format (one past the last) | *printFunctionObject* | functor used to format each element |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#