Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template dump

boost::log::dump — Creates a stream manipulator that will output contents of a memory region in hexadecimal form.

Synopsis

// In header: <boost/log/utility/manipulators/dump.hpp>


template<typename T> unspecified dump(T * data, std::size_t size);

Description

Parameters:

data

The pointer to the beginning of the region

size

The size of the region, in bytes

Returns:

The manipulator that is to be put to a stream


PrevUpHomeNext