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 range_manip

boost::log::range_manip

Synopsis

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


template<typename RangeT> 
  range_manipulator< RangeT, void > range_manip(RangeT const & range);

Description

Range manipulator generator function.

[Note] Note

delimiter object must outlive the created manipulator object.

Parameters:

range

Range of elements to output. The range must support begin and end iterators, and its elements must support stream output.

Returns:

Manipulator to be inserted into the stream.


PrevUpHomeNext