boost::urls::grammar::squelch
Squelch the value of a rule
Synopsis
template<Rule R>
constexpr
/* implementation-defined */
squelch(R const& r) noexcept;
Description
This function returns a new rule which matches the specified rule, and converts its value type to void
. This is useful for matching delimiters in a grammar, where the value for the delimiter is not needed.
using value_type = void;