Defined in header <atomic> | |||
---|---|---|---|
(1) | (since C++11) | ||
| |||
| |||
(2) | (since C++11) | ||
| |||
|
Atomically replaces the value pointed by arg
with the result of bitwise XOR between the old value of obj
and arg
. Returns the value obj
held previously.
The operation is performed as if the following is executed:
1)
obj->fetch_xor(arg)
2)
obj->fetch_xor(arg, order)
Parameters
obj | - | pointer to the atomic object to modify |
arg | - | the value to bitwise XOR to the value stored in the atomic object |
order | - | the memory sycnhronization ordering for this operation: all values are permitted. |
Return value
The value immediately preceding the effects of this function in the modification order of *obj
.
Exceptions
noexcept
specification: noexcept
Possible implementation
|
Example
See also
(C++11) | atomically performs bitwise XOR between the argument and the value of the atomic object and obtains the value held previously (public member function of std::atomic ) |
(C++11)(C++11) | replaces the atomic object with the result of logical OR with a non-atomic argument and obtains the previous value of the atomic (function template) |
(C++11)(C++11) | replaces the atomic object with the result of logical AND with a non-atomic argument and obtains the previous value of the atomic (function template) |
C documentation for atomic_fetch_xor, atomic_fetch_xor_explicit |
Please login to continue.