boost::urls::grammar::delim_rule

delim_rule overloads

Synopses

Match a character literal

constexpr
/* implementation-defined */
delim_rule(char ch) noexcept;

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;

Return Value

  • A rule which matches the character.

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

Parameters

Name

Description

ch

The character to match

cs

The character set to use.

See Also