Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template piped_consumer

boost::piped_consumer

Synopsis

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

template<typename Pipe, typename Consumer> 
struct piped_consumer {
  // types
  typedef unspecified      boost_concept_check__LINE__;
  typedef unspecified      boost_concept_check__LINE__;
  typedef unspecified      boost_concept_check__LINE__;
  typedef Pipe::input_type input_type;                 

  // construct/copy/destruct
  piped_consumer();
  piped_consumer(Pipe, Consumer);

  // public member functions
  template<typename In> In ltr(In, In) ;
  template<typename In> In rtl(In, In) ;
  static const std::size_t mpl_assertion_in_line___LINE__;
};

Description

Model of Consumer that adapts the elements another Consumer sees with a model of Pipe, assuming its max_output is 1.

piped_consumer public construct/copy/destruct

  1. piped_consumer();
  2. piped_consumer(Pipe p_, Consumer c_);

piped_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