![]() |
XTL
0.1
eXtended Template Library
|
Grammar and AST declarations. More...
Data Structures | |
class | and_ |
Represents a parse algorithm where all specified elements parse are contiguously present in the input stream All the terminals and rules listed in the parameter pack must parse successfully to satisfy the parse rule. More... | |
class | character |
Character terminal parsing algorithm. More... | |
class | one_or_more_ |
Represents a parse algorithm where where the terminal or rule is repeated one or more times in the input stream The specified item must parse successfully at least once to satisfy the parse rule. More... | |
class | or_ |
Represents a parse algorithm where one of the listed elements is present in the input stream One of the terminals or rules listed in the parameter pack must parse successfully to satisfy the parse rule. More... | |
class | regex |
regular expression parsing algorithm. More... | |
class | rule |
Curiously recurring template pattern to simplify creation of rule_base implementations Rules and terminals implement the rule_base interface through this pattern. More... | |
class | rule_base |
Base class of both rules and terminals Though rules and terminals are technically different they share the rule_base ancestor in XTL to have a cleaner object model and simpler parsing algorithms. More... | |
class | string |
String terminal parsing algorithm. More... | |
class | whitespace |
list of whitespace characters to ignore in the input stream. More... | |
class | zero_or_more_ |
Represents a parse algorithm where the terminal or rule repeats zero or more times in the input stream Always successfully parses whether or not the element parses. More... | |
class | zero_or_one_ |
Represents a parse algorithm where the terminal or rule repeats exactly zero or one time in the input stream Always successfully parses whether or not the element parses. More... | |
Grammar and AST declarations.
class xtd::parse::and_ |
Represents a parse algorithm where all specified elements parse are contiguously present in the input stream All the terminals and rules listed in the parameter pack must parse successfully to satisfy the parse rule.
... | list of child rules and terminals to parse |
class xtd::parse::or_ |
Represents a parse algorithm where one of the listed elements is present in the input stream One of the terminals or rules listed in the parameter pack must parse successfully to satisfy the parse rule.
... | list of child rules and terminals to parse |
class xtd::parse::regex |
regular expression parsing algorithm.
This template is infrequently used directly. The REGEX macro is provided to declare a regular expression terminal.
class xtd::parse::string |
String terminal parsing algorithm.
This template is infrequently used directly. The STRING and STRING_ macros are provided to declare string terminals.
class xtd::parse::whitespace |
list of whitespace characters to ignore in the input stream.
Whitespace characters are parsed and discarded from the input stream when encountered between rules or terminals. A typical whitespace declaration for written language might be: whitespace<'\r', '\n', '\t', ' '>;
_Ch... | list of characters to ignore. |
Data Fields | ||
---|---|---|
whitespace_type |