hexDump overloads
Declared in <bdlb_print.h>
Print multiple buffers in hexadecimal format to a stream.
static
std::ostream&
hexDump(
std::ostream& stream,
bsl::pair<char const*, int>* buffers,
int numBuffers);
» more...
Print a buffer in hexadecimal format to a stream.
static
std::ostream&
hexDump(
std::ostream& stream,
char const* buffer,
int length);
» more...
a reference to stream
| Name | Description |
|---|---|
| stream | the output stream |
| buffers | array of buffer pointer/length pairs |
| numBuffers | number of entries in buffers |
| buffer | the memory buffer to dump |
| length | the length of buffer in bytes |