[#boost-urls-absolute_uri_rule] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::absolute_uri_rule :relfileprefix: ../../ :mrdocs: Rule for absolute‐URI == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/rfc/absolute_uri_rule.hpp#L67[boost/url/rfc/absolute_uri_rule.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- inline constexpr /* implementation-defined */::xref:boost/urls/implementation_defined/absolute_uri_rule_t.adoc[absolute_uri_rule_t] absolute_uri_rule = {}; ---- == Description === Value Type [,cpp] ---- using value_type = url_view; ---- === Example Rules are used with the function xref:boost/urls/grammar/parse-02.adoc[grammar::parse]. [,cpp] ---- system::result< url_view > rv = grammar::parse( "http://example.com/index.htm?id=1", absolute_uri_rule ); ---- === BNF [,cpp] ---- absolute-URI = scheme ":" hier-part [ "?" query ] hier-part = "//" authority path-abempty / path-absolute / path-rootless / path-empty ---- === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-4.3[4.3. Absolute URI (rfc3986)] == See Also xref:boost/urls/grammar/parse-02.adoc[grammar::parse], xref:boost/urls/parse_absolute_uri.adoc[parse_absolute_uri], xref:boost/urls/url_view.adoc[url_view]. [.small]#Created with https://www.mrdocs.com[MrDocs]#