![]() |
Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Protected Member Functions | |
| void | Push (T item) |
| T | Pop () |
| T | Top () |
| T | Bottom () |
| bool | IsEmpty () |
| int | Count () |
| Returns the count of elements stored in this stack. | |
Protected Attributes | |
| ref array< ref T > | m_aArray = {} |
Wrapper for array that works as a stack
Definition at line 5 of file SCR_Stack.c.
Get the first inserted and topmost element without popping it from the stack
Definition at line 47 of file SCR_Stack.c.
Returns the count of elements stored in this stack.
Definition at line 64 of file SCR_Stack.c.
Definition at line 57 of file SCR_Stack.c.
Pop an item from the top of the stack
Definition at line 20 of file SCR_Stack.c.
Push an item to the end of the stack
| [in] | item | the item to push |
Definition at line 12 of file SCR_Stack.c.
Get the last inserted and topmost element without popping it from the stack
Definition at line 35 of file SCR_Stack.c.
Definition at line 7 of file SCR_Stack.c.