Stream insertion operators
Declared in <bdlbb_blob.h>
Format the specified blob buffer to the specified output stream.
std::ostream&
operator<<(
std::ostream& stream,
BlobBuffer const& buffer);
» more...
Write an ascii dump of the referenced blob range to the stream.
std::ostream&
operator<<(
std::ostream& stream,
BlobUtilAsciiDumper const& rhs);
» more...
Write a hex dump of the referenced blob range to the stream.
std::ostream&
operator<<(
std::ostream& stream,
BlobUtilHexDumper const& rhs);
» more...
streamstream| Name | Description |
|---|---|
| stream | output stream |
| buffer | blob buffer to format |
| rhs | ascii dumper describing the blob range to write |