Stack

extends List

Constructors

Stack other, Node deep

Create a new, empty Stack.

Type Functions

pop()

Get the last item added to the Stack.

Returns: The last item in this Stack, or an empty nodeset if the Stack is empty.

push(Node value)

Add an entry to the stack.

Returns: The Stack that the function was invoked on.

Functions inherited from List