hexDump overloads
Declared in <bdlbb_blobutil.h>
Write to the specified stream a hexdump of the specified source, and return a reference to the modifiable stream.
static
std::ostream&
hexDump(
std::ostream& stream,
Blob const& source);
» more...
Write to the specified stream a hexdump of the specified length bytes of the specified source starting at the specified offset, and return a reference to the modifiable stream. The behavior is undefined unless 0 <= offset, 0 <= length, length <= source.length() and offset <= source.length() - length.
static
std::ostream&
hexDump(
std::ostream& stream,
Blob const& source,
int offset,
int length);
» more...