Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url_view_base::empty

Return true if the URL is empty.

Synopsis
bool
empty() const;
Description

The empty string matches the relative-ref grammar.

Example
assert( url_view( "" ).empty() );
Complexity

Constant.

Exception Safety

Throws nothing.

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

relative-part = "//" authority path-abempty
              / path-absolute
              / path-noscheme
              / path-empty
Specification

PrevUpHomeNext