Utility for hex dumping a blob to standard output streams. This class has operator<< defined for it, so it can be used as follows: ` bsl::vector<char> blob; blob.resize(1024);
Synopsis
Declared in <bdlb_print.h>
struct PrintStringHexDumper;
Description
// ... fill up the blob with some data ...
bsl::cout << PrintStringHexDumper(blob.data(), blob.size()) << bsl::endl; `
Member Functions
Name |
Description |
|
Create a |
Data Members
Name |
Description |
address of data to hex dump |
|
length in bytes of data to hex dump |
Created with MrDocs