it.unimi.dsi.fastutil.floats
Interface FloatStack

All Superinterfaces:
Stack
All Known Implementing Classes:
AbstractFloatList, AbstractFloatStack

public interface FloatStack
extends Stack

A type-specific Stack; provides some additional methods that use polymorphism to reduce type juggling.


Method Summary
 float peekFloat(int i)
           
 float popFloat()
           
 void push(float k)
           
 float topFloat()
           
 
Methods inherited from interface it.unimi.dsi.fastutil.Stack
isEmpty, peek, pop, push, top
 

Method Detail

push

public void push(float k)
See Also:
Stack.push(Object)

popFloat

public float popFloat()
See Also:
Stack.pop()

topFloat

public float topFloat()
See Also:
Stack.top()

peekFloat

public float peekFloat(int i)
See Also:
Stack.peek(int)