Next: , Previous: System_collections_binary_tree, Up: System_collections


3.2.2.2 System.collections.stack

Implements: see System_object

Represents a stack.

Supported constructors:

System.collections.stack()
Creates a new stack object.

Supported methods:

count()
Return the number of elements in the stack.
push(value)
Pushes value onto stack.
pop()
Pops topmost value from stack.
top()
Returns top element on stack without removing it.