Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
url_base::has_fragment

(Inherited from url_view_base)

Return true if a fragment is present.

Synopsis
bool
has_fragment() const;
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
See Also

encoded_fragment, fragment.


PrevUpHomeNext