<list> functions

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).