std::atomic_ref<T>::operator= (3) - Linux Manuals
std::atomic_ref<T>::operator=: std::atomic_ref<T>::operator=
Command to display std::atomic_ref<T>::operator=
manual in Linux: $ man 3 std::atomic_ref<T>::operator=
NAME
std::atomic_ref<T>::operator= - std::atomic_ref<T>::operator=
Synopsis
T operator=( T desired ) const noexcept; (1)
atomic_ref& operator=( const atomic_ref& ) = delete; (2)
1) Atomically assigns a value desired to the referenced object. Equivalent to store(desired).
2) atomic_ref is not CopyAssignable.
Parameters
desired - value to assign
Return value
desired.
Notes
Unlike most assignment operators, the assignment operator for atomic_ref does not return a reference to its left-hand argument. It returns a copy of the stored value instead.
See also
constructs an atomic_ref object
constructor (public member function)
Pages related to std::atomic_ref<T>::operator=
- std::atomic_ref<T>::operator++,++(int),--,--(int) (3) - std::atomic_ref<T>::operator++,++(int),--,--(int)
- std::atomic_ref<T>::operator+=,-=,&=,|=,^= (3) - std::atomic_ref<T>::operator+=,-=,&=,|=,^=
- std::atomic_ref<T>::operatorT (3) - std::atomic_ref<T>::operatorT
- std::atomic_ref<T>::atomic_ref (3) - std::atomic_ref<T>::atomic_ref
- std::atomic_ref<T>::compare_exchange_weak,std::atomic_ref<T>::compare_exchange_strong (3) - std::atomic_ref<T>::compare_exchange_weak,std::atomic_ref<T>::compare_exchange_strong
- std::atomic_ref<T>::exchange (3) - std::atomic_ref<T>::exchange
- std::atomic_ref<T>::fetch_add (3) - std::atomic_ref<T>::fetch_add
- std::atomic_ref<T>::fetch_and (3) - std::atomic_ref<T>::fetch_and
- std::atomic_ref<T>::fetch_or (3) - std::atomic_ref<T>::fetch_or
- std::atomic_ref<T>::fetch_sub (3) - std::atomic_ref<T>::fetch_sub
- std::atomic_ref<T>::fetch_xor (3) - std::atomic_ref<T>::fetch_xor
- std::atomic_ref<T>::is_always_lock_free (3) - std::atomic_ref<T>::is_always_lock_free
- std::atomic_ref<T>::is_lock_free (3) - std::atomic_ref<T>::is_lock_free
- std::atomic_ref<T>::load (3) - std::atomic_ref<T>::load
- std::atomic_ref<T>::required_alignment (3) - std::atomic_ref<T>::required_alignment
- std::atomic_ref<T>::store (3) - std::atomic_ref<T>::store
- std::atomic_ref (3) - std::atomic_ref
- std::atomic_...<std::shared_ptr> (3) - std::atomic_...<std::shared_ptr>