|
stdex
Additional custom or not Standard C++ covered algorithms
|
Test for sequence. More...
#include <stdex/parser.hpp>
Public Member Functions | |
| basic_sequence (const std::shared_ptr< basic_parser< T > > *el=nullptr, size_t count=0, const std::locale &locale=std::locale()) | |
| basic_sequence (std::vector< std::shared_ptr< basic_parser< T > > > &&collection, const std::locale &locale=std::locale()) | |
| virtual bool | match (_In_reads_or_z_(end) const T *text, size_t start=0, size_t end=(size_t) -1, int flags=match_default) |
Public Member Functions inherited from stdex::parser::parser_collection< T > | |
| parser_collection (const std::shared_ptr< basic_parser< T > > *el, size_t count, const std::locale &locale=std::locale()) | |
| parser_collection (std::vector< std::shared_ptr< basic_parser< T > > > &&collection, const std::locale &locale=std::locale()) | |
| virtual void | invalidate () |
Public Member Functions inherited from stdex::parser::basic_parser< T > | |
| basic_parser (const std::locale &locale=std::locale()) | |
| bool | search (_In_reads_or_z_(end) const T *text, size_t start=0, size_t end=(size_t) -1, int flags=match_default) |
| template<class _Traits , class _Ax > | |
| bool | match (const std::basic_string< T, _Traits, _Ax > &text, size_t start=0, size_t end=(size_t) -1, int flags=match_default) |
Additional Inherited Members | |
Public Attributes inherited from stdex::parser::basic_parser< T > | |
| interval< size_t > | interval |
| Region of the last match. | |
Protected Member Functions inherited from stdex::parser::parser_collection< T > | |
| parser_collection (const std::locale &locale) | |
Protected Attributes inherited from stdex::parser::parser_collection< T > | |
| std::vector< std::shared_ptr< basic_parser< T > > > | m_collection |
Protected Attributes inherited from stdex::parser::basic_parser< T > | |
| std::locale | m_locale |
Test for sequence.
|
inlinevirtual |
Implements stdex::parser::basic_parser< T >.