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 master branch, built from commit 7789ef3d8d.
PrevUpHomeNext
string::swap (2 of 2 overloads)

Swap the contents.

Synopsis
void
swap(
    string& other);
Description

Exchanges the contents of this string with another string. Ownership of the respective boost::container::pmr::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.


PrevUpHomeNext