Class Stack

Object
   |
   --AbstractList
      |
      --Vector
         |
         --Stack
Classes extended from Stack:
Location: Program_Root/util/Stack.php
The Stack class represents a last-in-first-out (LIFO) stack of objects. 
 It extends class Vector with five operations that allow a vector to be treated as a stack. 
 The usual push and pop operations are provided, as well as a method to peek at the top 
 item on the stack, a method to test for whether the stack is empty, and a method to search 
 the stack for an item and discover how far it is from the top. 
 <p/>When a stack is first created, it contains no items.

Class Variable Summary


Inherited Class Variable Summary


Method Summary


Inherited Method Summary

Inherited From Class Vector

Inherited From Class AbstractList

Inherited From Class Object


Variable Detail


Method Detail