Stack::pop

(Available since version 1.0)

Stack::popPops a node from the end of the stack

Description

public mixed Stack::pop ( void )

Parameters

This function has no parameters.

Return Values

The value of the popped node.

Errors/Exceptions

Throws SEIDS::LinkedLists::CantPopFromEmptyException when the data-structure is empty.

To Top