[#boost-urls-grammar-squelch] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/grammar.adoc[grammar]::squelch :relfileprefix: ../../../ :mrdocs: Squelch the value of a rule == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/grammar/tuple_rule.hpp#L218[boost/url/grammar/tuple_rule.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<xref:boost/urls/grammar/Rule.adoc[Rule] R> constexpr /* implementation-defined */::xref:boost/urls/grammar/implementation_defined/squelch_rule_t.adoc[squelch_rule_t]<R> 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. === Value Type [,cpp] ---- using value_type = void; ---- === Example 1 With `squelch`: [,cpp] ---- system::result< std::tuple< decode_view, core::string_view > > rv = parse( "www.example.com:443", tuple_rule( pct_encoded_rule(unreserved_chars + '-' + '.'), squelch( delim_rule( ':' ) ), token_rule( digit_chars ) ) ); ---- === Example 2 Without `squelch`: [,cpp] ---- system::result< std::tuple< decode_view, core::string_view, core::string_view > > rv = parse( "www.example.com:443", tuple_rule( pct_encoded_rule(unreserved_chars + '-' + '.'), delim_rule( ':' ), token_rule( digit_chars ) ) ); ---- == Parameters |=== | Name | Description | *r* | The rule to squelch |=== == See Also xref:boost/urls/grammar/delim_rule-01.adoc[delim_rule], xref:boost/urls/grammar/digit_chars.adoc[digit_chars], xref:boost/urls/grammar/parse-02.adoc[parse], xref:boost/urls/grammar/tuple_rule.adoc[tuple_rule], xref:boost/urls/grammar/token_rule.adoc[token_rule], xref:boost/urls/decode_view.adoc[decode_view], xref:boost/urls/pct_encoded_rule.adoc[pct_encoded_rule], xref:boost/urls/unreserved_chars.adoc[unreserved_chars]. [.small]#Created with https://www.mrdocs.com[MrDocs]#