Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template multi_boundary

boost::multi_boundary

Synopsis

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

template<typename B1, typename Pipe, typename B2> 
struct multi_boundary {
  // types
  typedef unspecified    boost_concept_check__LINE__;
  typedef unspecified    boost_concept_check__LINE__;
  typedef unspecified    boost_concept_check__LINE__;
  typedef unspecified    boost_concept_check__LINE__;
  typedef unspecified    boost_concept_check__LINE__;
  typedef B1::input_type input_type;                 

  // construct/copy/destruct
  multi_boundary();
  multi_boundary(B1, Pipe, B2);

  // public member functions
  template<typename In> bool operator()(In, In, In) ;
};

Description

Model of BoundaryChecker constructed from two models of BoundaryChecker with a model of Pipe applied in the middle.

multi_boundary public construct/copy/destruct

  1. multi_boundary();
  2. multi_boundary(B1 b1_, Pipe p_, B2 b2_);

multi_boundary public member functions

  1. template<typename In> bool operator()(In begin, In end, In pos) ;

PrevUpHomeNext