![]() |
Home | Libraries | People | FAQ | More |
boost::consumer_iterator
// In header: <boost/iterator/consumer_iterator_fwd.hpp> template<typename It, typename Consumer> struct consumer_iterator { // types typedef unspecified boost_concept_check__LINE__; typedef unspecified boost_concept_check__LINE__; typedef unspecified boost_concept_check__LINE__; // construct/copy/destruct consumer_iterator(); consumer_iterator(It, It, It, Consumer); // public member functions It base() const; // private member functions iterator_range< It > dereference() const; void increment() ; void decrement() ; bool equal(const consumer_iterator &) const; };
Iterator adapter that wraps a range to make it appear like a range of subranges, each subrange being a step of a Consumer
invocation.
consumer_iterator
private member functionsiterator_range< It > dereference() const;
void increment() ;
void decrement() ;
bool equal(const consumer_iterator & other) const;