std::experimental::swap(std::experimental::observer_ptr)
From cppreference.com
< cpp | experimental | observer ptr
C++
Experimental
| Technical Specification | ||||
| Filesystem library (filesystem TS) | ||||
| Library fundamentals (library fundamentals TS) | ||||
| Library fundamentals 2 (library fundamentals TS v2) | ||||
| Library fundamentals 3 (library fundamentals TS v3) | ||||
| Extensions for parallelism (parallelism TS) | ||||
| Extensions for parallelism 2 (parallelism TS v2) | ||||
| Extensions for concurrency (concurrency TS) | ||||
| Extensions for concurrency 2 (concurrency TS v2) | ||||
| Concepts (concepts TS) | ||||
| Ranges (ranges TS) | ||||
| Reflection (reflection TS) | ||||
| Mathematical special functions (special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
Library fundamentals v2
std::experimental::observer_ptr
| Member functions | ||||
| Modifiers | ||||
| Observers | ||||
| Conversions | ||||
| Non-member functions | ||||
swap | ||||
| template< class W > void swap( observer_ptr<W>& lhs, observer_ptr<W>& rhs ) noexcept; |
(library fundamentals TS v2) | |
Specializes the swap algorithm for std::experimental::observer_ptr. Swaps the pointers of lhs and rhs. Calls lhs.swap(rhs).
Contents |
[edit] Parameters
| lhs, rhs | - | observer_ptrs whose contents to swap
|
[edit] Return value
(none)
[edit] Complexity
Constant.
[edit] See also
| swaps the values of two objects (function template) [edit] | |
| swaps the watched objects (public member function) [edit] |