Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template zero_plus_parser

boost::parser::zero_plus_parser

Synopsis

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

template<typename Parser> 
struct zero_plus_parser : public  {

  // public member functions
  (Parser);
};

Description

Repeats the application of another parser p of type Parser, [0, Inf) times. The parse always succeeds. The attribute produced is a sequence of the type of attribute produced by Parser.

zero_plus_parser public member functions

  1. (Parser parser);

PrevUpHomeNext