public member function
<stack>
std::swap (stack)template <class T, class Container> void swap (stack<T,Container>& x, stack<T,Container>& y) noexcept(noexcept(x.swap(y)));
Exchange contents of stacks
Exchanges the contents of x and y.1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// swap stacks
#include <iostream> // std::cout
#include <Stack> // std::stack, std::swap(stack)
int main ()
{
std::stack<int> foo,bar;
foo.push (10); foo.push(20); foo.push(30);
bar.push (111); bar.push(222);
swap(foo,bar);
std::cout << "size of foo: " << foo.size() << '\n';
std::cout << "size of bar: " << bar.size() << '\n';
return 0;
}
size of foo: 2 size of bar: 3
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4