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

This is the documentation for a snapshot of the develop branch, built from commit b5267c6e8a.
PrevUpHomeNext
field::operator= (2 of 30 overloads)

Move assignment.

Synopsis
field&
operator=(
    field&& other);
Exception safety

No-throw guarantee.

Object lifetimes

Invalidates references to *this obtained by as_xxx and get_xxx functions, but not the ones obtained by field::operator field_view(). All references into other are invalidated, including the ones obtained by calling get_xxx, as_xxx and field::operator field_view().


PrevUpHomeNext