std::swap(std::forward_list)
From Cppreference
< cpp | container | forward list
|
(C++11 feature)
template< class T, class Allocator > void swap( forward_list<T,Allocator> &lhs, forward_list<T,Allocator> &rhs ); |
|
Specializes the std::swap algorithm for std::forward_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
|
swaps the contents (public member function) |