[#BloombergLP-bdlbb-BlobUtil-hexDump-0f] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::xref:BloombergLP/bdlbb/BlobUtil.adoc[BlobUtil]::hexDump :relfileprefix: ../../../ :mrdocs: `hexDump` overloads == Synopses Declared in `<bdlbb_blobutil.h>` Write to the specified `stream` a hexdump of the specified `source`, and return a reference to the modifiable `stream`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& xref:BloombergLP/bdlbb/BlobUtil/hexDump-07.adoc[hexDump]( std::ostream& stream, xref:BloombergLP/bdlbb/Blob.adoc[Blob] const& source); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtil/hexDump-07.adoc[_» more..._]# Write to the specified `stream` a hexdump of the specified `length` bytes of the specified `source` starting at the specified `offset`, and return a reference to the modifiable `stream`. The behavior is undefined unless `0 <= offset`, `0 <= length`, `length <= source.length()` and `offset <= source.length() ‐ length`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static std::ostream& xref:BloombergLP/bdlbb/BlobUtil/hexDump-05.adoc[hexDump]( std::ostream& stream, xref:BloombergLP/bdlbb/Blob.adoc[Blob] const& source, int offset, int length); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtil/hexDump-05.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#