Package ghidra.util.graph
Class AddableLongDoubleHashtable
- java.lang.Object
-
- ghidra.util.datastruct.LongDoubleHashtable
-
- ghidra.util.graph.AddableLongDoubleHashtable
-
- All Implemented Interfaces:
java.io.Serializable
public class AddableLongDoubleHashtable extends LongDoubleHashtable
This class modifies the behavior of LongDoubleHashtable. May add to the value stored with the key rather than replacing the value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddableLongDoubleHashtable()
AddableLongDoubleHashtable(int capacity)
Constructor creates a table with an initial given capacity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(long key, double value)
Adds the value to the stored value rather than replacing it.
-