(Available since version 1.0)
The Stack class provides the main functionalities of a stack implemented using a singly linked list.
Unlike almost all other classes in this collection, this class provides only a very small subset of the methods provided by its SPL equivalent, SplStack. It is, therefore, only a drop-in replacement for SplStack in some circumstances. These limitations are due to LIFO not being supported by the SEIDS::LinkedLists::Singly::LinkedList class on which this class is based (via encapsulation).
The singly linked list.