A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://timsong-cpp.github.io/cppwp/n4659/atomics.types.memop below:

[atomics.types.memop]

32 Atomic operations library [atomics] 32.6 Class template atomic [atomics.types.generic] 32.6.4 Member operators common to integers and pointers to objects [atomics.types.memop]

T operator++(int) volatile noexcept; T operator++(int) noexcept;

Effects: Equivalent to: return fetchadd(1);

T operator--(int) volatile noexcept; T operator--(int) noexcept;

Effects: Equivalent to: return fetchsub(1);

T operator++() volatile noexcept; T operator++() noexcept;

Effects: Equivalent to: return fetch_­add(1) + 1;

T operator--() volatile noexcept; T operator--() noexcept;

Effects: Equivalent to: return fetch_­sub(1) - 1;


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4