[#BloombergLP-bslim-Printer_Helper-print-02] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslim.adoc[bslim]::xref:BloombergLP/bslim/Printer_Helper.adoc[Printer_Helper]::print :relfileprefix: ../../../ :mrdocs: `print` overloads == Synopses Declared in `<bslim_printer.h>` Format the specified `data` to the specified output `stream` at the (absolute value of) the specified indentation `level`, using the specified `spacesPerLevel`, the number of spaces per indentation level for this and all of its nested objects. Note that this function dispatches to `printRaw` based on the type traits of the deduced (template parameter) `TYPE`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> static void xref:BloombergLP/bslim/Printer_Helper/print-01.adoc[print]( std::ostream& stream, TYPE const& data, int level, int spacesPerLevel); ---- [.small]#xref:BloombergLP/bslim/Printer_Helper/print-01.adoc[_» more..._]# Format the range of objects specified by `[ begin, end )]` to the specified output `stream` at the (absolute value of) the specified indentation `level`, using the specified `spacesPerLevel`, the number of spaces per indentation level for the objects and their nested objects, where `ITERATOR` supports the operators `++` and `*` to access the objects. Individual objects are printed with `printValue`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ITERATOR> static void xref:BloombergLP/bslim/Printer_Helper/print-07.adoc[print]( std::ostream& stream, ITERATOR const& begin, ITERATOR const& end, int level, int spacesPerLevel); ---- [.small]#xref:BloombergLP/bslim/Printer_Helper/print-07.adoc[_» more..._]# Format the range of objects specified by `[ begin, end )]` to the specified output `stream` at the (absolute value of) the specified indentation `level`, using the specified `spacesPerLevel`, the number of spaces per indentation level for the objects and their nested objects, where `ITERATOR` supports the operators `++` and `*` to access the objects, printing the individual objects with the specified `printFunctionObject`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class ITERATOR, class PRINT_FUNCTOR> static void xref:BloombergLP/bslim/Printer_Helper/print-09.adoc[print]( std::ostream& stream, ITERATOR const& begin, ITERATOR const& end, PRINT_FUNCTOR const& printFunctionObject, int const level, int const spacesPerLevel); ---- [.small]#xref:BloombergLP/bslim/Printer_Helper/print-09.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#