Standard C++ Library Class Reference

aa
aaa
aaaa
aaaaa
aaaaaa
aaaaaaa
aaaaaaaa
aaaaaaaaa
aaaaaaaaaa
aaaaaaaaaa
aaaaaaaaa
aaaaaaaa
aaaaaaa
aaaaaa
aaaaa
aaaa
aaa
aa
a
Warnings
If your compiler does not support template parameter defaults, you are required to supply a
template parameter for Container and for Allocator. For example:
You would not be able to write,
stack<int> var;
Instead, you would have to write,
stack<int, deque<int>, allocator> var;
See Also
allocator, Containers, deque, list, vector