Print to the specified stream the uppercase hex encoding of the byte sequence defined by the specified begin and end iterators of the parameterized INPUT_ITERATOR type, and return a reference providing modifiable access to stream. Note that INPUT_ITERATOR need not be random‐access, i.e., it need support only increment (++) and equality comparison (==). See the non‐template version of this function if insulation and/or code bloat are a concern.

Synopsis

Declared in <bdlb_print.h>

template<class INPUT_ITERATOR>
static
std::ostream&
singleLineHexDump(
    std::ostream& stream,
    INPUT_ITERATOR begin,
    INPUT_ITERATOR end);

Created with MrDocs