...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Copy assignment.
value
& operator=(value
const& other);
The contents of the value are replaced with an element-wise copy of the
contents of other
.
Linear in the size of *this
plus other
.
Strong guarantee. Calls to memory_resource::allocate
may throw.
Name |
Description |
---|---|
|
The value to copy. |