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
object::object (8 of 11 overloads)

Copy constructor.

Synopsis
object(
    object const& other);
Description

The object is constructed with a copy of the contents of other, using other's memory resource.

Complexity

Linear in other.size().

Exception Safety

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

Parameters

Name

Description

other

The object to copy.


PrevUpHomeNext