Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template make_multi_boundary

boost::make_multi_boundary

Synopsis

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


template<typename B1, typename Pipe, typename B2> 
  multi_boundary< B1, Pipe, B2 > make_multi_boundary(B1 b1, Pipe p, B2 b2);

Description

Requires: ((BoundaryCheckerConcept<B1>)) ((PipeConcept<Pipe>)) ((BoundaryCheckerConcept<B2>)) ((Convertible<typename B1::input_type, typename Pipe::input_type>)) ((Convertible<typename Pipe::output_type, typename B2::input_type>))


PrevUpHomeNext