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

From cppreference.com
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
 
void operator=( shared_ptr<T> desired ) noexcept;
(1)
void operator=( const atomic_shared_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_shared_ptr returns void.

Remarks

All changes to the atomic_shared_ptr object itself, and all associated use_count increments, are guaranteed to be performed atomically. Associated use_count decrements take place after the atomic operation, but are not required to be part of it. Any associated destruction or deallocation operations take place after the atomic operation and are not part of it.

See also

constructs an atomic_shared_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)