![]() |
Home | Libraries | People | FAQ | More |
boost::parser::symbol_parser
// In header: <boost/parser/parser_fwd.hpp> template<typename T> struct symbol_parser { };
Matches one of a set S of possible inputs, each of which is associated with an attribute value of type T
, forming a symbol table. New elements and their associated attributes may be added to or removed from S dynamically, during parsing; any such changes are reverted at the end of parsing. The parse succeeds iff an element of S is matched.
See Also: symbols