std::swap(std::list)

From Cppreference

Jump to: navigation, search
 
template< class T, class Allocator >

void swap( list<T,Allocator> &lhs, list<T,Allocator> &rhs );


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

Contents

[edit] Parameters

lhs, rhs - containers whose contents to swap

[edit] Return value

(none)

[edit] Complexity

Constant

[edit] See also

swap
swaps the contents
(public member function)