operator=

Assignment

Synopsis

param& operator=( param&& other) noexcept;

Declared in file <boost/url/param.hpp> at line 191

Description

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

Complexity

Constant.

Exception Safety

Throws nothing.

other The object to assign from.