Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template iterator

boost::parser::split_view::iterator

Synopsis

// In header: <boost/parser/split.hpp>


template<bool Const> 
struct iterator {
  // types
  typedef unspecified I;        
  typedef unspecified S;        
  typedef unspecified base_type;

  // public member functions
  iterator() = default;
  iterator(unspecified);
  iterator & operator++();
  BOOST_PARSER_SUBRANGE< I > operator*() const;
};

Description

iterator public member functions

  1. iterator() = default;
  2. iterator(unspecified parent);
  3. iterator & operator++();
  4. BOOST_PARSER_SUBRANGE< I > operator*() const;

PrevUpHomeNext