boost::urls::url_view::url_view

Constructor

Synopses

Declared in <boost/url/url_view.hpp>

Constructor

url_view() noexcept;
cpp

Constructor

url_view(core::string_view s);
cpp

Constructor

url_view(url_view const& other) noexcept;
cpp

Constructor

url_view(url_view_base const& other) noexcept;
cpp

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);
cpp

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