std::atomic_fetch_xor,std::atomic_fetch_xor_explicit (3) Linux Manual Page
std::atomic_fetch_xor,std::atomic_fetch_xor_explicit – std::atomic_fetch_xor,std::atomic_fetch_xor_explicit Synopsis Defined in header <atomic> template< class T > T atomic_fetch_xor( std::atomic<T>* obj, typename std::atomic<T>::value_type arg ) noexcept; template< class T > T atomic_fetch_xor( volatile std::atomic<T>* obj, typename std::atomic<T>::value_type arg ) noexcept; template< class T > (1) (since C++11) T atomic_fetch_xor_explicit( std::atomic<T>* obj, typename std::atomic<T>::value_type arg, std::memory_order order) noexcept; (2) (since C++11)…
