boost::parser::zero_plus_parser
// In header: <boost/parser/parser.hpp> template<typename Parser> struct zero_plus_parser : public { // public member functions (Parser); };
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.
p
Parser
[0, Inf)
zero_plus_parser
(Parser parser);