boost::urls::url_view::url_view

Constructors

Synopses

Declared in <boost/url/url_view.hpp>

Constructor

constexpr
url_view() noexcept = default;
» more...

Constructor

constexpr
url_view(url_view const& other) noexcept = default;
» more...

Move constructor

constexpr
url_view(url_view&& other) noexcept = default;
» more...

Constructor

url_view(core::string_view s);
» more...

Constructor

constexpr
url_view(url_view_base const& other) noexcept;
» more...

Constructor

template<class String>
requires std::is_convertible<
                String,
                core::string_view
                    >::value &&
            !std::is_convertible<
                String*,
                url_view_base*
                    >::value
url_view(String const& s);
» more...

Exceptions

NameThrown on
system_errorThe input failed to parse correctly.

Parameters

NameDescription
otherThe other view.
sThe string to parse.