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