| Package | Description |
|---|---|
| cern.colt.map |
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OpenIntDoubleHashMap
Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractIntDoubleMap |
AbstractIntDoubleMap.copy()
Returns a deep copy of the receiver; uses
clone() and casts the result. |
| Modifier and Type | Method and Description |
|---|---|
void |
OpenIntDoubleHashMap.assign(AbstractIntDoubleMap other)
Clears the receiver, then adds all (key,value) pairs of othervalues to it.
|
void |
AbstractIntDoubleMap.assign(AbstractIntDoubleMap other)
Clears the receiver, then adds all (key,value) pairs of othervalues to it.
|
Jump to the Colt Homepage