boost::urls::grammar::token_rule

token_rule overloads

Synopses

Declared in <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...

Return Value

The token rule

Template Parameters

Name Description
CharSet The character set type to use

Parameters

Name Description
cs The character set to use

See Also

alpha_chars, parse.