A set of characters
| Name | Description | 
|---|---|
| lut_chars[constructor] | Constructors | 
| operator() | Return true if ch is in the character set. | 
| operator~ | Return a new character set which is the complement of another character set. | 
| Name | Description | 
|---|---|
| operator- | Return a new character set by subtracting | 
| operator+ | Return the union of two character sets. | 
The characters defined by instances of this set are provided upon construction. The constexpr implementation allows these to become compile-time constants.
Character sets are used with rules and the functions find_if and find_if_not.
constexpr lut_chars vowel_chars = "AEIOU" "aeiou";
system::result< core::string_view > rv = parse( "Aiea", token_rule( vowel_chars ) );