![]() |
Home | Libraries | People | FAQ | More |
boost::pipe_iterator
// In header: <boost/iterator/pipe_iterator_fwd.hpp> template<typename It, typename Pipe> struct pipe_iterator { // types typedef unspecified boost_concept_check__LINE__; typedef unspecified boost_concept_check__LINE__; typedef unspecified boost_concept_check__LINE__; // construct/copy/destruct pipe_iterator(); pipe_iterator(It, It, It, Pipe); // public member functions It base() const; // private member functions T dereference() const; void increment() ; void decrement() ; bool equal(const pipe_iterator &) const; };
Iterator adapter that wraps a range to make it appear like a converted one, by converting it step-by-step as it is advanced.
pipe_iterator
private member functionsT dereference() const;
void increment() ;
void decrement() ;
bool equal(const pipe_iterator & other) const;