After the call to this member function, the elements in this container are those which were in lst before the call, and the elements of lst are those which were in this. All iterators, references and pointers remain valid for the swapped objects.
Notice that a global algorithm function exists with this same name, swap, and the same behavior.
Parameters
- lst
- Another list container of the same type as this whose content is swapped with that of this container.
Return value
noneExample
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
Output:
first contains: 200 200 200 200 200 second contains: 100 100 100 |
Complexity
Constant.See also
| swap | Exchange values of two objects (function template) |
