[#BloombergLP-bdlb-Print-singleLineHexDump-05] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/Print.adoc[Print]::singleLineHexDump :relfileprefix: ../../../ :mrdocs: `singleLineHexDump` overloads == Synopses Declared in `<bdlb_print.h>` Print a contiguous byte range as uppercase hex on a single line. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& xref:BloombergLP/bdlb/Print/singleLineHexDump-0cb.adoc[singleLineHexDump]( std::ostream& stream, char const* begin, char const* end); ---- [.small]#xref:BloombergLP/bdlb/Print/singleLineHexDump-0cb.adoc[_» more..._]# Print a buffer as uppercase hex on a single line. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& xref:BloombergLP/bdlb/Print/singleLineHexDump-02.adoc[singleLineHexDump]( std::ostream& stream, char const* buffer, int length); ---- [.small]#xref:BloombergLP/bdlb/Print/singleLineHexDump-02.adoc[_» more..._]# Print a byte sequence as uppercase hex on a single line. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITERATOR> static std::ostream& xref:BloombergLP/bdlb/Print/singleLineHexDump-0c5.adoc[singleLineHexDump]( std::ostream& stream, INPUT_ITERATOR begin, INPUT_ITERATOR end); ---- [.small]#xref:BloombergLP/bdlb/Print/singleLineHexDump-0c5.adoc[_» more..._]# == Return Value a reference to `stream` == Parameters [cols="1,4"] |=== | Name| Description | *stream* | the output stream | *begin* | pointer to the first byte | *end* | pointer past the last byte | *buffer* | the memory buffer to dump | *length* | the length of `buffer` in bytes |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#