[#BloombergLP-bdlbb-BlobUtilAsciiDumper-2constructor-03] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::xref:BloombergLP/bdlbb/BlobUtilAsciiDumper.adoc[BlobUtilAsciiDumper]::BlobUtilAsciiDumper :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<bdlbb_blobutil.h>` Create an ascii dumper for the specified `blob` that dumps the entire `blob` to the output stream when passed to `operator<<`. See `operator<<(bsl::ostream&, const BlobUtilAsciiDumper&)` for details. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bdlbb/BlobUtilAsciiDumper/2constructor-0c.adoc[BlobUtilAsciiDumper](xref:BloombergLP/bdlbb/Blob.adoc[Blob] const* blob); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtilAsciiDumper/2constructor-0c.adoc[_» more..._]# Create an ascii dumper for the specified `blob` that ascii dumps the first `min(length, blob‐>length())` bytes of the `blob` to the output stream when passed to `operator<<`. See `operator<<(bsl::ostream&, const BlobUtilAsciiDumper&)` for details. The behavior is undefined unless `0 <= length`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlbb/BlobUtilAsciiDumper/2constructor-08.adoc[BlobUtilAsciiDumper]( xref:BloombergLP/bdlbb/Blob.adoc[Blob] const* blob, int length); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtilAsciiDumper/2constructor-08.adoc[_» more..._]# Create a hex dumper for the specified `blob` that ascii dumps the bytes of the `blob` starting with the `min(offset, blob‐>length())` byte and until `min(offset + length, blob‐>length())` byte to the output stream when passed to `operator<<`. See `operator<<(bsl::ostream&, const BlobUtilAsciiDumper&)` for details. The behavior is undefined unless `0 <= offset && 0 <= length`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlbb/BlobUtilAsciiDumper/2constructor-0a.adoc[BlobUtilAsciiDumper]( xref:BloombergLP/bdlbb/Blob.adoc[Blob] const* blob, int offset, int length); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtilAsciiDumper/2constructor-0a.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#