boost::urls::url_view::url_view

Constructor

Synopses

Declared in <boost/url/url_view.hpp>

Constructor

url_view() noexcept;

Constructor

url_view(core::string_view s);

Constructor

url_view(url_view const& other) noexcept;

Constructor

url_view(url_view_base const& other) noexcept;

Constructor

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

Exceptions

Name Thrown on

system_error

The input failed to parse correctly.

Parameters

Name Description

s

The string to parse.

other

The other view.

See Also

Created with MrDocs