Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template boundary_consumer

boost::boundary_consumer

Synopsis

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

template<typename BoundaryChecker> 
struct boundary_consumer {
  // types
  typedef unspecified                 boost_concept_check__LINE__;
  typedef BoundaryChecker::input_type input_type;                 

  // construct/copy/destruct
  boundary_consumer();
  boundary_consumer(BoundaryChecker);

  // 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 BoundaryChecker.

boundary_consumer public construct/copy/destruct

  1. boundary_consumer();
  2. boundary_consumer(BoundaryChecker b_);

boundary_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