Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url_view_base::has_fragment

Return true if a fragment is present.

Synopsis
bool
has_fragment() const;
Description

This function returns true if this contains a fragment. An empty fragment is distinct from having no fragment.

Example
assert( url_view( "http://www.example.com/index.htm#a%2D1" ).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