Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - Norton Guide http://www.X-Hacker.org [^^Up^^] [Menu] [About The Guide]
 Stack                  Stack class
 ----------------------------------------------------------------------------
 Stack
 Stack class
 ----------------------------------------------------------------------------
 
 Properties
 ClassName      The name of the class
 
 Methods
 Stack:Init()        Construct a stack object
 Stack:Pop()         Push a value
 Stack:Push()        Pop a value
 
 Inherits From
 Nothing.
 
 Inherited By
 Nothing.
 
 Description
 This class implements a stack of arbitrary size (not limited
 by Clipper's 4096 maximum array size).  Any data can be pushed
 on the stack, with items being popped in reverse order.
 
 Example
 oStack = Stack{}
 oStack:Push("Hello")
 oStack:Push("World")
 c = oStack:Pop()   // "World"
 c = oStack:Pop()   // "Hello"
 
 

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson