DEV Community

Farhan Yahya
Farhan Yahya

Posted on • Updated on

The list::swap() function

The list swap function is used in c++ to swap the values of two lists with the same size and type.

std::list<int> a{1, 2, 3, 4, 5};
std::list<int> b{6, 7, 8, 9, 10};
a.swap(b);
//from here the content of a is in b and vice-versa

Top comments (0)