[#F0887477DC879F9C7AAC34D6FB4538E1BFB31DC4]

Function url:: url

Constructor

Synopsis

            url() noexcept;
        

Description

Default constructed urls contain a zero-length string. This matches the grammar for a relative-ref with an empty path and no query or fragment.

Example

url u;

Postconditions

this->empty() == true

Complexity

Constant.

Exception Safety

Throws nothing.

BNF

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

Specification

4.2. Relative Reference (rfc3986)