[#BloombergLP-bdlb-Print-hexDump-09] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/Print.adoc[Print]::hexDump :relfileprefix: ../../../ :mrdocs: `hexDump` overloads == Synopses Declared in `<bdlb_print.h>` Print to the specified `stream` the specified `numBuffers` buffers supplied by specified `buffers` in a hexadecimal representation (16 chars per line) followed by the ASCII representation. Return a reference providing modifiable access to `stream`. The array of buffers are supplied as a `bsl::pair<const char*, int> *` where the first element is a pointer to the data, and the second element is the length of the buffer. The behavior is undefined unless `0 <= numBuffers`. Note that the contents of the buffers are concatenated and boundaries between buffers are not demarcated. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& xref:BloombergLP/bdlb/Print/hexDump-00.adoc[hexDump]( std::ostream& stream, xref:bsl/pair-0b.adoc[bsl::pair<char const*, int>]* buffers, int numBuffers); ---- [.small]#xref:BloombergLP/bdlb/Print/hexDump-00.adoc[_» more..._]# Print in hexadecimal format the contents of the specified `buffer` of the specified `length` to the specified `stream`, and return a reference providing modifiable access to `stream`. The behavior is undefined unless `0 <= length`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& xref:BloombergLP/bdlb/Print/hexDump-06.adoc[hexDump]( std::ostream& stream, char const* buffer, int length); ---- [.small]#xref:BloombergLP/bdlb/Print/hexDump-06.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#