Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template make_piped_consumer

boost::make_piped_consumer

Synopsis

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


template<typename Pipe, typename Consumer> 
  piped_consumer< Pipe, Consumer > make_piped_consumer(Pipe p, Consumer c);

Description

Requires: ((PipeConcept<Pipe>)) ((ConsumerConcept<Consumer>)) ((Convertible<typename Pipe::output_type, typename Consumer::input_type>))


PrevUpHomeNext