A stack is a last-in-first-out data structure.
This package contains 3 interfaces:
MutableStack - a mutable stack API.
ImmutableStack - the non-modifiable equivalent interface to MutableStack.
StackIterable - a read-only stack API.
| Interface | Description |
|---|---|
| ImmutableStack<T> | |
| MutableStack<T> | |
| StackIterable<T> |
StackIterable is a last-in-first-out data structure.
|
Copyright © 2004–2017. All rights reserved.