public class TDoubleStack extends Object
| Modifier and Type | Field and Description |
|---|---|
protected TDoubleArrayList |
_list
the list used to hold the stack values.
|
static int |
DEFAULT_CAPACITY
|
| Constructor and Description |
|---|
TDoubleStack()
Creates a new
TDoubleStack instance with the default capacity.
|
TDoubleStack(int capacity)
Creates a new
TDoubleStack instance with the specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clears the stack, reseting its capacity to the default.
|
double |
peek()
Returns the value at the top of the stack.
|
double |
pop()
Removes and returns the value at the top of the stack.
|
void |
push(double 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.
|
double[] |
toNativeArray()
Copies the contents of the stack into a native array.
|
void |
toNativeArray(double[] dest)
Copies a slice of the list into a native array.
|
protected TDoubleArrayList_list
public static final int DEFAULT_CAPACITY
public TDoubleStack()
TDoubleStack instance with the default capacity.
public TDoubleStack(int capacity)
TDoubleStack instance with the specified capacity.
capacity - the initial depth of the stack
public void push(double val)
val - an
double value
public double pop()
double value
public double peek()
double value
public int size()
public void clear()
public void reset()
public double[] toNativeArray()
double[] value
public void toNativeArray(double[] dest)
dest - the array to copy into.