[#BloombergLP-bdlbb-operator_lshift-07b] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::operator<< :relfileprefix: ../../ :mrdocs: Stream insertion operators == Synopses Declared in `<bdlbb_blob.h>` Format the specified blob `buffer` to the specified output `stream`, and return a reference to the modifiable `stream`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::ostream& xref:BloombergLP/bdlbb/operator_lshift-01.adoc[operator<<]( std::ostream& stream, xref:BloombergLP/bdlbb/BlobBuffer.adoc[BlobBuffer] const& buffer); ---- [.small]#xref:BloombergLP/bdlbb/operator_lshift-01.adoc[_» more..._]# 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`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::ostream& xref:BloombergLP/bdlbb/operator_lshift-0d.adoc[operator<<]( std::ostream& stream, xref:BloombergLP/bdlbb/BlobUtilAsciiDumper.adoc[BlobUtilAsciiDumper] const& rhs); ---- [.small]#xref:BloombergLP/bdlbb/operator_lshift-0d.adoc[_» more..._]# Hex‐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`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::ostream& xref:BloombergLP/bdlbb/operator_lshift-07f.adoc[operator<<]( std::ostream& stream, xref:BloombergLP/bdlbb/BlobUtilHexDumper.adoc[BlobUtilHexDumper] const& rhs); ---- [.small]#xref:BloombergLP/bdlbb/operator_lshift-07f.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#