Assignment
<include/boost/url/param.hpp>
param&
operator=(param&& other) noexcept;
» more...
constexpr
param&
operator=(param const&) = default;
» more...
param&
operator=(param_view const& other);
» more...
param&
operator=(param_pct_view const& other);
» more...
Upon assignment, this acquires ownership of the members of other via move assignment. The moved from object is as if default constructed.
Name | Description |
---|---|
other | The parameter to copy. |