class haxe.ds.GenericStack<T>
Available on all platforms
A stack of elements.
This class is generic, which means one type is generated for each type
parameter T on static targets. For example:
- `new GenericStack<Int>()` generates `GenericStack_Int`
- `new GenericStack<String>()` generates `GenericStack_String`
The generated name is an implementation detail and should not be relied
upon.