[#BloombergLP-bdlb-Print-singleLineHexDump-0c5] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/Print.adoc[Print]::singleLineHexDump :relfileprefix: ../../../ :mrdocs: Print to the specified `stream` the uppercase hex encoding of the byte sequence defined by the specified `begin` and `end` iterators of the parameterized `INPUT_ITERATOR` type, and return a reference providing modifiable access to `stream`. Note that `INPUT_ITERATOR` need not be random‐access, i.e., it need support only increment (`++`) and equality comparison (`==`). See the non‐template version of this function if insulation and/or code bloat are a concern. == Synopsis Declared in `<bdlb_print.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITERATOR> static std::ostream& singleLineHexDump( std::ostream& stream, INPUT_ITERATOR begin, INPUT_ITERATOR end); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#