| bak.pcj.list.IntStack
All known Subclasses: bak.pcj.list.IntArrayStack,
IntStack | public interface IntStack extends IntList(Code) | | This interface represents stacks of int values.
See Also: java.util.Stack See Also: IntDeque author: Søren Bak version: 1.1 2003/15/2 since: 1.0 |
Method Summary | |
int | peek() Returns the top element of this stack. | int | pop() Pops an element off this stack. | void | push(int v) Pushes a specified element onto this stack. |
push | void push(int v)(Code) | | Pushes a specified element onto this stack.
Parameters: v - the element to push onto this stack. |
|
|