Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template iterator

boost::parser::replace_view::iterator

Synopsis

// In header: <boost/parser/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