boost::urls::param::operator=

Assignment

Synopsis

Declared in <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...

Description

Upon assignment, this acquires ownership of the members of other via move assignment. The moved from object is as if default constructed.

Constant.

Throws nothing.

Parameters

Name Description
other

The parameter to copy.

Created with MrDocs