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

PrevUpHomeNext

Function template _begin

boost::parser::_begin

Synopsis

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


template<typename Context> decltype(auto) _begin(Context const & context);

Description

Returns an iterator to the beginning of the entire sequence being parsed. The effect of calling this within a semantic action associated with a skip-parser is undefined


PrevUpHomeNext