![]() |
Home | Libraries | People | FAQ | More |
boost::boundary_consumer
// 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) ; };
Model of Consumer
constructed from a model of BoundaryChecker
.