boost::urls::param_pct_view::param_pct_view
Constructor
Synopsis
Declared in <boost/url/param.hpp>
constexpr
param_pct_view() = default;
param_pct_view(
pct_string_view key,
pct_string_view value) noexcept;
template<class OptionalString>
param_pct_view(
pct_string_view key,
OptionalString const& value);
explicit
param_pct_view(param_view const& p);
param_pct_view(
pct_string_view key,
pct_string_view value,
bool has_value) noexcept;
Parameters
Name | Description |
---|---|
OptionalString |
An optional `core::string_view` type, such as `boost::optional<core::string_view>` or `std::optional<core::string_view>`. |
Parameters
Name | Description |
---|---|
key, |
value The key and value to set. |
p |
The param to construct from. |
Created with MrDocs