boost::urls::relative_ref_rule

Rule for relative-ref

Synopsis

Declared in <boost/url/rfc/relative_ref_rule.hpp>
constexpr /* implementation-defined */ relative_ref_rule = {};


Description

Value Type

using value_type = url_view;

Example

Rules are used with the function grammar::parse.

system::result< url_view > rv = grammar::parse( "images/dot.gif?v=hide#a", relative_ref_rule );

BNF

relative-ref = relative-part [ "?" query ] [ "#" fragment ]

Specification

See Also

grammar::parse, parse_relative_ref, url_view.

Created with MrDocs