atomic_fetch_and_explicit Function
Performs a bitwise and of a value and an existing value that is stored in an atomic object.
template <class T>
inline T atomic_fetch_and_explicit(
volatile atomic<T>* Atom,
T Value,
memory_order Order); noexcept
template <class T>
inline T atomic_fetch_and_explicit(
volatile atomic<T>* Atom,
T Value,
memory_order Order); noexcept
Parameters
Atom
A pointer to an atomic object that stores a value of type T.Value
A value of type T.Order
A memory_order.
Return Value
The value contained by the atomic object immediately before the operation was performed.
Remarks
The atomic_fetch_and_explicit function performs a read-modify-write operation to replace the stored value of Atom with a bitwise and of Value and the current value that is stored in Atom, within the memory_order constraints that are specified by Order.
Requirements
Header: atomic
Namespace: std