Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

Struct template char_set_parser
PrevUpHomeNext

Struct template char_set_parser

boost::parser::char_set_parser

Synopsis

// In header: <boost/parser/parser_fwd.hpp>

template<typename Tag> 
struct char_set_parser {
};

Description

Matches a single code point that is equal to one of the code points associated with tag type Tag. This is used to create sets of characters for matching Unicode character classes like punctuation or lower case. Attribute type is the attribute type of the character being matched.


PrevUpHomeNext