[#BloombergLP-bdlb-Print-hexDump-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/Print.adoc[Print]::hexDump :relfileprefix: ../../../ :mrdocs: 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. == Synopsis Declared in `<bdlb_print.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& hexDump( std::ostream& stream, xref:bsl/pair-0b.adoc[bsl::pair<char const*, int>]* buffers, int numBuffers); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#