Curiously recurring template pattern to simplify creation of rule_base implementations Rules and terminals implement the rule_base interface through this pattern.
More...
|
using | decl_type = _DeclT |
|
using | impl_type = _ImplT |
|
using | rule_type = rule< _DeclT, _ImplT > |
|
using | pointer_type = std::shared_ptr< rule_base > |
|
using | vector_type = std::vector< pointer_type > |
|
|
template<typename... _ChildRuleTs> |
| rule (_ChildRuleTs &&...oChildRules) |
|
virtual bool | isa (const std::type_info &oType) const override |
| Determines if the interface is implemented by a concrete type. More...
|
|
virtual const std::type_info & | type () const override |
| Gets the type info of the concrete implementation.
|
|
template<typename... _ChildRuleTs> |
| rule_base (_ChildRuleTs &&...oChildRules) |
| Constructor. More...
|
|
const vector_type & | items () const |
| Accessor for child parse elements. More...
|
|
template<typename _DeclT, typename _ImplT = _DeclT>
class xtd::parse::rule< _DeclT, _ImplT >
Curiously recurring template pattern to simplify creation of rule_base implementations Rules and terminals implement the rule_base interface through this pattern.
It provides boiler plate pointer_type, isa() and type() members.
- Template Parameters
-
_DeclT | The type declaration. Permits access to the implementation from the rule class template. Declaration pass their name in the form of: class SomeRule : rule<SomeRule> |
_ImplT | The declaration used by the parsing algorithms. The library instantiates type of _DeclT when _ImplT successfully parses. |
Definition at line 105 of file parse.hpp.
template<typename _DeclT, typename _ImplT = _DeclT>
virtual bool xtd::parse::rule< _DeclT, _ImplT >::isa |
( |
const std::type_info & |
oType | ) |
const |
|
inlineoverridevirtual |
Determines if the interface is implemented by a concrete type.
- Parameters
-
- Returns
- true if the implementation's is the specified type
Implements xtd::parse::rule_base.
Definition at line 116 of file parse.hpp.
The documentation for this class was generated from the following file: