...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.
storage_ptr
& operator=(storage_ptr
const& other) noexcept;
This function assigns a pointer that points to the same memory resource
as other
, with the same
ownership:
other
is non-owning,
then *this
will be be non-owning.
other
has shared
ownership, then *this
will acquire shared ownership.
If *this
previously had shared ownership, it is released before the function returns.
Constant.
No-throw guarantee.
Name |
Description |
---|---|
|
The storage pointer to copy. |