Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template consumer_iterator

boost::consumer_iterator

Synopsis

// 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;
};

Description

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 public construct/copy/destruct

  1. consumer_iterator();
  2. consumer_iterator(It begin_, It end_, It pos_, Consumer c_);

consumer_iterator public member functions

  1. It base() const;

consumer_iterator private member functions

  1. iterator_range< It > dereference() const;
  2. void increment() ;
  3. void decrement() ;
  4. bool equal(const consumer_iterator & other) const;

PrevUpHomeNext