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