Stack class.
Implements push and pop.
The type of the satellite data.
Optional
The value(s) with which to initialize the stack. An array will create a stack w/ the last element being the top of the stack. If no value provided, creates an empty stack.
The content of the stack.
The last element is the the top of the stack.
Pops off of the stack.
The former top of the stack.
Pushes onto the stack.
The new top of the stack.
Generated using TypeDoc
Stack class.
Implements push and pop.