std::experimental::atomic_weak_ptr<T>::operator=

From cppreference.com
Experimental
Technical Specification
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals TS v2)
Library fundamentals 3 (library fundamentals TS v3)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Extensions for concurrency 2 (concurrency TS v2)
Concepts (concepts TS)
Ranges (ranges TS)
Reflection (reflection TS)
Mathematical special functions (special functions TR)
Experimental Non-TS
Pattern Matching
Linear Algebra
std::execution
Contracts
2D Graphics
void operator= ( weak_ptr<T> desired ) noexcept ;
(1)
void operator= ( const atomic_weak_ptr& ) = delete;
(2)
1) Atomically assigns a value desired to the atomic variable. Equivalent to store(desired)
2) Atomic variables are not CopyAssignable

Parameters

desired - value to assign

Notes

Unlike most assignment operators, the assignment operators for atomic_weak_ptr returns void.

Remarks

All changes to the atomic_weak_ptr object itself, and all associated use_count increments, are guaranteed to be performed atomically. Associated use_count

See also

constructs an atomic_weak_ptr object
(public member function)
atomically replaces the value of the atomic object with a non-atomic argument
(public member function)
specializes atomic operations for std::shared_ptr
(function template)