Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template pipe_consumer

boost::pipe_consumer

Synopsis

// In header: <boost/iterator/consumer_iterator.hpp>

template<typename Pipe> 
struct pipe_consumer {
  // types
  typedef unspecified      boost_concept_check__LINE__;
  typedef Pipe::input_type input_type;                 

  // construct/copy/destruct
  pipe_consumer();
  pipe_consumer(Pipe);

  // public member functions
  template<typename In> In ltr(In, In) ;
  template<typename In> In rtl(In, In) ;
};

Description

Model of Consumer constructed from a model of Pipe.

pipe_consumer public construct/copy/destruct

  1. pipe_consumer();
  2. pipe_consumer(Pipe p_);

pipe_consumer public member functions

  1. template<typename In> In ltr(In begin, In end) ;
  2. template<typename In> In rtl(In begin, In end) ;

PrevUpHomeNext