Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template pipe_iterator

boost::pipe_iterator

Synopsis

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

Description

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

  1. pipe_iterator();
  2. pipe_iterator(It begin_, It end_, It pos_, Pipe p_);

pipe_iterator public member functions

  1. It base() const;

pipe_iterator private member functions

  1. T dereference() const;
  2. void increment() ;
  3. void decrement() ;
  4. bool equal(const pipe_iterator & other) const;

PrevUpHomeNext