boost::parser::one_plus_parser
// In header: <boost/parser/parser.hpp> template<typename Parser> struct one_plus_parser : public { // public member functions (Parser); };
Repeats the application of another parser p of type Parser, [1, Inf) times. The parse succeeds iff p succeeds at least once. The attribute produced is a sequence of the type of attribute produced by Parser.
p
Parser
[1, Inf)
one_plus_parser
(Parser parser);