asciiDump overloads

Synopses

Declared in <bdlbb_blobutil.h>

Write an ascii dump of the entire source blob to the stream.

static
std::ostream&
asciiDump(
    std::ostream& stream,
    Blob const& source);

Write an ascii dump of a blob byte range to the stream.

static
std::ostream&
asciiDump(
    std::ostream& stream,
    Blob const& source,
    int offset,
    int length);

Return Value

reference to the modifiable stream

Parameters

Name

Description

stream

output stream

source

blob to dump

offset

starting byte offset in source

length

number of bytes to dump

Created with MrDocs