Write an ascii dump of the referenced blob range to the stream.
Declared in <bdlbb_blobutil.h>
std::ostream&
operator<<(
std::ostream& stream,
BlobUtilAsciiDumper const& rhs);
Ascii-dump to the specified stream the bytes of the blob referenced by the specified rhs starting with the min(rhs.d_offset, rhs.d_blob_p->length()) byte and until min(rhs.d_offset + rhs.d_length, rhs.d_blob_p->length()) byte, and return a reference to the modifiable stream.
reference to the modifiable stream
| Name | Description |
|---|---|
| stream | output stream |
| rhs | ascii dumper describing the blob range to write |