hexDump overloads

Synopses

Declared in <bdlbb_blobutil.h>

Write a hex dump of the entire source blob to the stream.

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

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

static
std::ostream&
hexDump(
    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