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