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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
object::swap (2 of 2 overloads)

Swap two objects.

Synopsis
void
swap(
    object& other);
Description

Exchanges the contents of this object with another object. Ownership of the respective memory_resource objects is not transferred.

Complexity

Constant or linear in size() plus other.size().

Exception Safety

Strong guarantee. Calls to memory_resource::allocate may throw.

Parameters

Name

Description

other

The object to swap with. If this == &other, this function call has no effect.


PrevUpHomeNext