Aprepro 5.0x
|
A stack with random access from its top. More...
Classes | |
class | slice |
Present a slice of the top of a stack. More... | |
Public Types | |
typedef S::iterator | iterator |
typedef S::const_iterator | const_iterator |
typedef S::size_type | size_type |
typedef std::ptrdiff_t | index_type |
Public Member Functions | |
stack (size_type n=200) YY_NOEXCEPT | |
const T & | operator[] (index_type i) const |
T & | operator[] (index_type i) |
void | push (YY_MOVE_REF(T) t) |
void | pop (std::ptrdiff_t n=1) YY_NOEXCEPT |
Pop elements from the stack. | |
void | clear () YY_NOEXCEPT |
Pop all elements from the stack. | |
index_type | size () const YY_NOEXCEPT |
Number of elements on the stack. | |
const_iterator | begin () const YY_NOEXCEPT |
Iterator on top of the stack (going downwards). | |
const_iterator | end () const YY_NOEXCEPT |
Bottom of the stack. | |
Private Member Functions | |
stack (const stack &) | |
Non copyable. | |
stack & | operator= (const stack &) |
Non copyable. | |
Private Attributes | |
S | seq_ |
The wrapped container. | |
A stack with random access from its top.
S::const_iterator SEAMS::Parser::stack< T, S >::const_iterator |
std::ptrdiff_t SEAMS::Parser::stack< T, S >::index_type |
S::iterator SEAMS::Parser::stack< T, S >::iterator |
S::size_type SEAMS::Parser::stack< T, S >::size_type |
|
inline |
|
private |
Non copyable.
|
inline |
Iterator on top of the stack (going downwards).
|
inline |
Pop all elements from the stack.
|
inline |
Bottom of the stack.
|
private |
Non copyable.
|
inline |
Random access.
Index 0 returns the topmost element.
|
inline |
Random access.
Index 0 returns the topmost element.
|
inline |
Pop elements from the stack.
|
inline |
Steal the contents of t.
Close to move-semantics.
|
inline |
Number of elements on the stack.
|
private |
The wrapped container.