Package ghidra.util.datastruct
Class DoubleArrayArray
java.lang.Object
ghidra.util.datastruct.DoubleArrayArray
- All Implemented Interfaces:
Array
,Serializable
Array of double[] that grows as needed.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
copyDataTo
(int index, DataTable table, int toIndex, int toCol) Copies the underlying value for this array at the given index to the data table at the given index and column.double[]
get
(int index) Returns the double at the given indexint
Returns the index of the last non-null or non-zero element in the array.void
put
(int index, double[] value) Puts the given double value in the double array at the given indexvoid
remove
(int index) Removes the array at the given index
-
Constructor Details
-
DoubleArrayArray
public DoubleArrayArray()Creates new doubleArrayArray
-
-
Method Details
-
put
public void put(int index, double[] value) Puts the given double value in the double array at the given index- Parameters:
index
- Index into the array.value
- value to store- Throws:
IndexOutOfBoundsException
- if the index is negative
-
get
public double[] get(int index) Returns the double at the given index- Parameters:
index
- index into the array- Returns:
- The double array at the given index. An empty array will be returned for any index not initialized to another value.
-
remove
public void remove(int index) Removes the array at the given index -
getLastNonEmptyIndex
public int getLastNonEmptyIndex()Returns the index of the last non-null or non-zero element in the array.- Specified by:
getLastNonEmptyIndex
in interfaceArray
-
copyDataTo
Description copied from interface:Array
Copies the underlying value for this array at the given index to the data table at the given index and column. The data type at the column in the data table must be the same as the data in this array.- Specified by:
copyDataTo
in interfaceArray
- Parameters:
index
- index into this array to copy the value from.table
- the data table object to copy the data to.toIndex
- the index into the destination data table to copy the value.toCol
- the data table column to store the value. Must be the same type as this array.- See Also:
-