token_rule overloads
<boost/url/grammar/token_rule.hpp>Match a non-empty string of characters from a default-constructible set
template<CharSet CharSet>
constexpr
/* implementation-defined */
token_rule() noexcept
requires std::is_default_constructible<CharSet>::value;
» more...
Match a non-empty string of characters from a set
template<CharSet CS>
constexpr
/* implementation-defined */
token_rule(CS const& cs) noexcept;
» more...
| Name | Description |
|---|---|
| CharSet | The character set type to use |
| Name | Description |
|---|---|
| cs | The character set to use |