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
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
For further actions, you may consider blocking this person and/or reporting abuse
AIRabbit -
Michael Moranis -
Vaibhav Dwivedi -
Mahamadjon000 -
Top comments (0)