<boost/url/param.hpp>
constexpr
param() = default;
» more...
Constructor
constexpr
param(param const& other) = default;
» more...
Constructor
param(param&& other) noexcept;
» more...
Constructor
template<class OptionalString>
param(
core::string_view key,
OptionalString const& value);
» more...
Aggregate construction
param(
core::string_view key,
core::string_view value,
bool has_value) noexcept;
» more...
Name | Description |
---|---|
OptionalString | An optional string type, such as core::string_view , std::nullptr , no_value_t , or optional<core::string_view> . |
Name | Description |
---|---|
other | The object to construct from. |
key | The key to set. |
value | The value to set. |
has_value | True if a value is present. |