Constructor
<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...
Default-constructed params have zero elements.
params_view qp;
return params_view( "" );
Name | Thrown on |
---|---|
[object Object] |
contains an invalid query parameter string. |
Name | Description |
---|---|
s | The string to parse. |
opt | The options for decoding. If this parameter is omitted, `space_as_plus` is used. |