...世界上最受推崇和设计精良的 C++ 库项目之一。 — Herb Sutter 和 Andrei Alexandrescu,《C++ 编码规范
...世界上最受推崇和设计精良的 C++ 库项目之一。
boost::parser::char_parser
// In header: <boost/parser/parser_fwd.hpp> template<typename Expected, typename AttributeType = void> struct char_parser { };
匹配单个代码点。如果 AttributeType 不是 void,则 AttributeType 是生成的属性类型;否则,属性类型是匹配代码点的退化类型。解析仅在用特定的预期代码点值集合构造解析器且该集合不包含匹配的代码点时才会失败。
AttributeType
void