boost::urls::param_view::param_view

Constructors

Synopses

Declared in <boost/url/param.hpp>

Constructor

constexpr
param_view() = default;
» more...

Constructor

param_view(param const& other) noexcept;
» more...

Constructor

template<class OptionalString>
param_view(
    core::string_view key,
    OptionalString const& value) noexcept;
» more...

Aggregate construction

param_view(
    core::string_view key,
    core::string_view value,
    bool has_value) noexcept;
» more...

Template Parameters

NameDescription
OptionalStringAn optional string type, such as core::string_view, std::nullptr, no_value_t, or optional<core::string_view>.

Parameters

NameDescription
otherThe param to reference
keyThe key to set.
valueThe value to set.
has_valueTrue if a value is present.