| Stack -like data structure that allows the following efficient operations:
- Push/pop operation.
- Duplicate check. When an object that's already in the stack is pushed,
this class will tell you so.
Object equality is their identity equality.
This class implements
List for accessing items in the stack,
but
List methods that alter the stack is not supported.
author: Kohsuke Kawaguchi |