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 snapshot of the master branch, built from commit b14f8ca719.
PrevUpHomeNext

Struct template iterator

boost::parser::transform_replace_view::iterator

Synopsis

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


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

  // public member functions
  iterator() = default;
  iterator(unspecified);
  constexpr iterator & operator++();
  constexpr reference_type operator*() const;
};

Description

iterator public member functions

  1. iterator() = default;
  2. iterator(unspecified parent);
  3. constexpr iterator & operator++();
  4. constexpr reference_type operator*() const;

PrevUpHomeNext