Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
swap
Exchanges the elements of two lists.
template <class T, class Allocator>
void swap(list<T, Allocator>& left, list<T, Allocator>& right)
Parameters
left
An object of type list
.
right
An object of type list
.
Remarks
This template function executes left.swap(right)
.