delim_rule overloads
<boost/url/grammar/delim_rule.hpp>Match a character literal
constexpr
/* implementation-defined */
delim_rule(char ch) noexcept;
» more...
Match a single character from a character set
template<CharSet CS>
constexpr
/* implementation-defined */
delim_rule(CS const& cs) noexcept
requires ! std::is_convertible<
CS, char>::value;
» more...
| Name | Description |
|---|---|
| ch | The character to match |
| cs | The character set to use. |