[#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`. [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..._]# Write an ascii dump of the referenced blob range to the 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..._]# Write a hex dump of the referenced blob range to the 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..._]# == Return Value * a reference to the modifiable `stream` * reference to the modifiable `stream` == Parameters [cols="1,4"] |=== | Name| Description | *stream* | output stream | *buffer* | blob buffer to format | *rhs* | ascii dumper describing the blob range to write |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#