boost::urls::grammar::delim_rule

delim_rule overloads

Synopses

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

Return Value

  • A rule which matches the character.
  • A rule which matches a single character from the set.

Parameters

NameDescription
chThe character to match
csThe character set to use.