[#6625AC41A4020227FDE0A74FE865C7F7E1791A63]

Function url_view_base:: has_fragment

Return true if a fragment is present

Synopsis

            bool
has_fragment() const noexcept;
        

Description

This function returns true if the url contains a fragment. An empty fragment is distinct from no fragment.

Example

assert( url_view( "http://www.example.com/index.htm#anchor" ).has_fragment() );

Complexity

Constant.

Exception Safety

Throws nothing.

BNF

URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ] relative-ref = relative-part [ "?" query ] [ "#" fragment ]

Specification

  • 3.5. Fragment (rfc3986)