XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xtd::parser< _RuleT, _IgnoreCase, _WhitespaceT > Class Template Reference

Main parser class. More...

+ Collaboration diagram for xtd::parser< _RuleT, _IgnoreCase, _WhitespaceT >:

Static Public Member Functions

template<typename _IteratorT >
static
parse::rule_base::pointer_type 
parse (_IteratorT begin, _IteratorT end)
 Parses text. More...
 

Detailed Description

template<typename _RuleT, bool _IgnoreCase = false, typename _WhitespaceT = xtd::parse::whitespace<>>
class xtd::parser< _RuleT, _IgnoreCase, _WhitespaceT >

Main parser class.

The xtd::parser is used to perform the parse and return a constructed AST if the parse succeeds

Template Parameters
_RuleTThe start rule of the grammar
_IgnoreCaseSpecifies whether case should be ignored during the parse
_WhitespaceTA specialization of xtd::parse::whitespace that specifies the characters to ignore

Definition at line 527 of file parse.hpp.

Member Function Documentation

template<typename _RuleT , bool _IgnoreCase = false, typename _WhitespaceT = xtd::parse::whitespace<>>
template<typename _IteratorT >
static parse::rule_base::pointer_type xtd::parser< _RuleT, _IgnoreCase, _WhitespaceT >::parse ( _IteratorT  begin,
_IteratorT  end 
)
inlinestatic

Parses text.

Parameters
beginthe beginning iterator of the text to parse
endthe end iterator of the text to parse
Returns
a fully constructed AST of type _RuleT if the parse succeeds or a nullptr if failed
Examples:
example_parse1.cpp, and example_parse2.cpp.

Definition at line 535 of file parse.hpp.


The documentation for this class was generated from the following file: