stdex
Additional custom or not Standard C++ covered algorithms
|
Test for hexadecimal integer. More...
#include <stdex/parser.hpp>
Public Member Functions | |
basic_integer16 (const std::shared_ptr< basic_parser< T > > &digit_0, const std::shared_ptr< basic_parser< T > > &digit_1, const std::shared_ptr< basic_parser< T > > &digit_2, const std::shared_ptr< basic_parser< T > > &digit_3, const std::shared_ptr< basic_parser< T > > &digit_4, const std::shared_ptr< basic_parser< T > > &digit_5, const std::shared_ptr< basic_parser< T > > &digit_6, const std::shared_ptr< basic_parser< T > > &digit_7, const std::shared_ptr< basic_parser< T > > &digit_8, const std::shared_ptr< basic_parser< T > > &digit_9, const std::shared_ptr< basic_parser< T > > &digit_10, const std::shared_ptr< basic_parser< T > > &digit_11, const std::shared_ptr< basic_parser< T > > &digit_12, const std::shared_ptr< basic_parser< T > > &digit_13, const std::shared_ptr< basic_parser< T > > &digit_14, const std::shared_ptr< basic_parser< T > > &digit_15, 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) |
![]() | |
basic_integer (const std::locale &locale=std::locale()) | |
virtual void | invalidate () |
![]() | |
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) |
Protected Attributes | |
std::shared_ptr< basic_parser< T > > | m_digit_0 |
std::shared_ptr< basic_parser< T > > | m_digit_1 |
std::shared_ptr< basic_parser< T > > | m_digit_2 |
std::shared_ptr< basic_parser< T > > | m_digit_3 |
std::shared_ptr< basic_parser< T > > | m_digit_4 |
std::shared_ptr< basic_parser< T > > | m_digit_5 |
std::shared_ptr< basic_parser< T > > | m_digit_6 |
std::shared_ptr< basic_parser< T > > | m_digit_7 |
std::shared_ptr< basic_parser< T > > | m_digit_8 |
std::shared_ptr< basic_parser< T > > | m_digit_9 |
std::shared_ptr< basic_parser< T > > | m_digit_10 |
std::shared_ptr< basic_parser< T > > | m_digit_11 |
std::shared_ptr< basic_parser< T > > | m_digit_12 |
std::shared_ptr< basic_parser< T > > | m_digit_13 |
std::shared_ptr< basic_parser< T > > | m_digit_14 |
std::shared_ptr< basic_parser< T > > | m_digit_15 |
![]() | |
std::locale | m_locale |
Additional Inherited Members | |
![]() | |
size_t | value |
Calculated value of the numeral. | |
![]() | |
interval< size_t > | interval |
Region of the last match. | |
Test for hexadecimal integer.
|
inlinevirtual |
Implements stdex::parser::basic_parser< T >.