Artemis.Stack: | Types | Source |
TStack | A Stack implementation. |
Type TStack | |
Description | A Stack implementation. |
Methods Summary | |
---|---|
getTop | Give the current top object. |
isEmpty | Check whether stack is empty. |
pop | Pop an object from the stack. |
push | Push an object to the stack. |
Method getTop:Object() | |
Returns | The current top object. |
Description | Give the current top object. |
Method isEmpty:Int() | |
Returns | 1 if stack is empty - otherwise 0. |
Description | Check whether stack is empty. |
Method pop:Object() | |
Returns | The current top object. |
Description | Pop an object from the stack. |
Method push(value:Object) | |
Description | Push an object to the stack. |