Enumeration: Stack Methods - v1.0
This enumeration defines the available methods for the Stack.
Each method has an associated integer value used to identify the specific
operation to be performed on the Stack.
| Name | Type | Value | Description |
|---|---|---|---|
STACK_METHOD_00_NIL | Int | 0 | Stack: 0 - Nil |
STACK_METHOD_01_INIT | Int | 1 | Stack: 1 - Initialized |
STACK_METHOD_10_PUSH | Int | 10 | Stack: 10 - Push data to the last position |
STACK_METHOD_11_POP | Int | 11 | Stack: 11 - Pop data from the last position |
STACK_METHOD_12_PEEK | Int | 12 | Stack: 12 - Peek data from the last position |