boost::urls::url_view::url_view

Constructor

Synopsis

url_view() noexcept;
url_view(core::string_view s);
template<
    class String,
    class = void>
url_view(String const& s);
url_view(url_view const& other) noexcept;
url_view(url_view_base const& other) noexcept;

Description

Default constructed views refer to a string with zero length, which always remains valid. This matches the grammar for a relative-ref with an empty path and no query or fragment.

url_view u;
this->empty() == true

Constant.

Throws nothing.

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

4.2. Relative Reference (rfc3986)

Exceptions

Name Thrown on

The

input failed to parse correctly.

Parameters

Name Description

s

The string to parse.