Class template range_manipulator
boost::log::range_manipulator
Synopsis
template<typename RangeT, typename DelimiterT>
class range_manipulator {
public:
range_manipulator(RangeT const &, stored_delimiter_type) noexcept;
template<typename StreamT> void output(StreamT &) const;
};
Description
Stream manipulator for inserting a range of elements, optionally separated with a delimiter.
range_manipulator
public
construct/copy/destruct
-
range_manipulator(RangeT const & range, stored_delimiter_type delimiter) noexcept;
Initializing constructor.
range_manipulator
public member functions
-
template<typename StreamT> void output(StreamT & stream) const;
The method outputs elements of the range separated with delimiter.