AddFirst() AddFirst(object $object) Adds an object into the beginning of the list Parameters object $object
IsEmpty() IsEmpty() : boolean Returns true if the object is empty or false if it isn't Returns boolean
RemoveFirst() RemoveFirst() : object Removes the first object from the list and returns it Returns object
RemoveLast() RemoveLast() : object Removes the last object from the list and returns it Returns object
ObjectIterator() ObjectIterator() : \ArrayIterator Return new ArrayIterator of object Returns \ArrayIterator
Get() Get(integer $index) : object Returns the item at the stack index Parameters integer $index Returns object
Set() Set(integer $index, object $object) Sets the value at the specified index Parameters integer $index object $object