![]() |
Home | Libraries | People | FAQ | More |
boost::parser::repeat_directive
// In header: <boost/parser/parser.hpp> template<typename MinType, typename MaxType> struct repeat_directive { // public member functions template<typename Parser2> auto operator[](parser_interface< Parser2 >) const noexcept; // public data members MinType min_; MaxType max_; };
Represents a repeat_parser
as a directive (e.g. repeat[other_parser]
).
repeat_directive
public member functionstemplate<typename Parser2> auto operator[](parser_interface< Parser2 > rhs) const noexcept;