Stream insertion operators

Synopses

Declared in <bdlbb_blob.h>

Format the specified blob buffer to the specified output stream.

std::ostream&
operator<<(
    std::ostream& stream,
    BlobBuffer const& buffer);

Write an ascii dump of the referenced blob range to the stream.

std::ostream&
operator<<(
    std::ostream& stream,
    BlobUtilAsciiDumper const& rhs);

Write a hex dump of the referenced blob range to the stream.

std::ostream&
operator<<(
    std::ostream& stream,
    BlobUtilHexDumper const& rhs);

Return Value

  • a reference to the modifiable stream

  • reference to the modifiable stream

Parameters

Name

Description

stream

output stream

buffer

blob buffer to format

rhs

ascii dumper describing the blob range to write

Created with MrDocs