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