Constructors

Synopses

Declared in <bdlbb_blobutil.h>

Create a hex dumper for the entire specified blob.

explicit
BlobUtilHexDumper(Blob const* blob);

Create a hex dumper for a leading length of the specified blob.

BlobUtilHexDumper(
    Blob const* blob,
    int length);

Create a hex dumper for a byte range within the specified blob.

BlobUtilHexDumper(
    Blob const* blob,
    int offset,
    int length);

Parameters

Name

Description

blob

blob to dump

length

maximum number of bytes to dump

offset

starting byte offset in blob

Created with MrDocs