[#BloombergLP-bdlb-Print-singleLineHexDump-0cb] = 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 into the specified `stream`, and return a reference providing modifiable access to `stream`. This function insulates clients from its implementation, but unlike the member template version (above), requires random access iterators of type `const char *`. The behavior is undefined unless both `begin` and `end` refer to the same block of contiguous memory, and `begin <= end`. == Synopsis Declared in `<bdlb_print.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& singleLineHexDump( std::ostream& stream, char const* begin, char const* end); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#