public class TFloatStack extends Object
| Modifier and Type | Field and Description |
|---|---|
protected TFloatArrayList |
_list
the list used to hold the stack values.
|
static int |
DEFAULT_CAPACITY
|
| Constructor and Description |
|---|
TFloatStack()
Creates a new
TFloatStack instance with the default capacity.
|
TFloatStack(int capacity)
Creates a new
TFloatStack instance with the specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clears the stack, reseting its capacity to the default.
|
float |
peek()
Returns the value at the top of the stack.
|
float |
pop()
Removes and returns the value at the top of the stack.
|
void |
push(float val)
Pushes the value onto the top of the stack.
|
void |
reset()
Clears the stack without releasing its internal capacity allocation.
|
int |
size()
Returns the current depth of the stack.
|
float[] |
toNativeArray()
Copies the contents of the stack into a native array.
|
void |
toNativeArray(float[] dest)
Copies a slice of the list into a native array.
|
protected TFloatArrayList_list
public static final int DEFAULT_CAPACITY
public TFloatStack()
TFloatStack instance with the default capacity.
public TFloatStack(int capacity)
TFloatStack instance with the specified capacity.
capacity - the initial depth of the stack
public void push(float val)
val - an
float value
public float pop()
float value
public float peek()
float value
public int size()
public void clear()
public void reset()
public float[] toNativeArray()
float[] value
public void toNativeArray(float[] dest)
dest - the array to copy into.