Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a development version of boost.
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);
  constexpr iterator & operator++();
  constexpr BOOST_PARSER_SUBRANGE< I > operator*() const;
};

Description

iterator public member functions

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

PrevUpHomeNext