Package gnu.trove
Class TFloatStack
- java.lang.Object
-
- gnu.trove.TFloatStack
-
public class TFloatStack extends java.lang.ObjectA stack of float primitives, backed by a TFloatArrayList.- Version:
- $Id: PStack.template,v 1.2 2007/02/28 23:03:57 robeden Exp $
- Author:
- Eric D. Friedman, Rob Eden
-
-
Field Summary
Fields Modifier and Type Field Description protected TFloatArrayList_listthe list used to hold the stack values.static intDEFAULT_CAPACITY
-
Constructor Summary
Constructors Constructor Description TFloatStack()Creates a newTFloatStackinstance with the default capacity.TFloatStack(int capacity)Creates a newTFloatStackinstance with the specified capacity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears the stack, reseting its capacity to the default.floatpeek()Returns the value at the top of the stack.floatpop()Removes and returns the value at the top of the stack.voidpush(float val)Pushes the value onto the top of the stack.voidreset()Clears the stack without releasing its internal capacity allocation.intsize()Returns the current depth of the stack.float[]toNativeArray()Copies the contents of the stack into a native array.voidtoNativeArray(float[] dest)Copies a slice of the list into a native array.
-
-
-
Field Detail
-
_list
protected TFloatArrayList _list
the list used to hold the stack values.
-
DEFAULT_CAPACITY
public static final int DEFAULT_CAPACITY
- See Also:
- Constant Field Values
-
-
Method Detail
-
push
public void push(float val)
Pushes the value onto the top of the stack.- Parameters:
val- anfloatvalue
-
pop
public float pop()
Removes and returns the value at the top of the stack.- Returns:
- an
floatvalue
-
peek
public float peek()
Returns the value at the top of the stack.- Returns:
- an
floatvalue
-
size
public int size()
Returns the current depth of the stack.
-
clear
public void clear()
Clears the stack, reseting its capacity to the default.
-
reset
public void reset()
Clears the stack without releasing its internal capacity allocation.
-
toNativeArray
public float[] toNativeArray()
Copies the contents of the stack into a native array. Note that this will NOT pop them out of the stack.- Returns:
- an
float[]value
-
toNativeArray
public void toNativeArray(float[] dest)
Copies a slice of the list into a native array. Note that this will NOT pop them out of the stack.- Parameters:
dest- the array to copy into.
-
-