std::swap(std::weak_ptr)

From cppreference.com
< cpp‎ | memory‎ | weak ptr
 
 
Utilities library
Type support (basic types, RTTI, type traits)
Dynamic memory management
Error handling
Program utilities
Variadic functions
Date and time
Function objects
(C++11)
Relational operators
Optional and any
(C++17)
(C++17)
Pairs and tuples
(C++11)
(C++17)
Swap, forward and move
(C++14)
(C++11)
(C++11)
Type operations
(C++11)
(C++17)
 
 
 
template< class T >
void swap( weak_ptr<T>& lhs, weak_ptr<T>& rhs );
(since C++11)

Specializes the std::swap algorithm for std::weak_ptr. Swaps the pointers of lhs and rhs. Calls lhs.swap(rhs).


Contents

[edit] Parameters

lhs, rhs - smart pointers whose contents to swap

[edit] Return value

(none)

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] Complexity

Constant

[edit] See also

swaps the values of two objects
(function template)
swaps the contents
(public member function)