boost::urls::params_view::params_view

Constructor

Synopsis

Declared in <include/boost/url/params_view.hpp>

params_view() = default;

» more...

constexpr
params_view(params_view const& other) = default;

» more...

params_view(
    params_view const& other,
    encoding_opts opt) noexcept;

» more...

params_view(core::string_view s);

» more...

params_view(
    core::string_view s,
    encoding_opts opt);

» more...

Description

Default-constructed params have zero elements.

params_view qp; return params_view( "" );

Constant.

Throws nothing.

Exceptions

Name Thrown on
[object Object]

contains an invalid query parameter string.

Parameters

Name Description
s

The string to parse.

opt

The options for decoding. If this parameter is omitted, `space_as_plus` is used.

Created with MrDocs