Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

param::operator= (1 of 4 overloads)
PrevUpHomeNext

Assignment.

Synopsis
param&
operator=(
    param&& other);
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.

PrevUpHomeNext