Stack (gb.data)

A Stack is a LIFO datatype. It follows the access patterns of "last in, first out". (In some cultures this is also known as FILO "first in, last out")

If you know the Tower of Hanoi, you know what a Stack is. Also, for further information, refer to this wikipedia article

This class is creatable.

Properties
IsEmpty   property Read IsEmpty As Boolean
Size   property Read Size As Integer

Methods
Clear   Sub Clear ( )
Copy   Return a deep copy of the Stack.
Peek   Function Peek ( ) As Variant
Pop   Function Pop ( ) As Variant
Push   Sub Push ( Value As Variant )