Create a stack from the range [first, last)].
Declared in <bslstl_stack.h>
template<class INPUT_ITER>
stack(
INPUT_ITER first,
INPUT_ITER last);
Create a stack passing the specified first and last to the constructor of the underlying container. Optionally specify an allocator used to supply memory. If allocator is not specified, a default-constructed object of the (template parameter) type ALLOCATOR is used.
| Name | Description |
|---|---|
| first | beginning of the input range |
| last | end of the input range |