Package | Description |
---|---|
cern.colt.map.tdouble |
Automatically growing and shrinking map holding elements of double data type.
|
cern.colt.map.tfloat |
Automatically growing and shrinking map holding elements of float data type.
|
cern.colt.map.tint |
Automatically growing and shrinking map holding elements of int data type.
|
cern.colt.map.tlong |
Automatically growing and shrinking map holding elements of long data type.
|
cern.colt.map.tobject |
Automatically growing and shrinking map holding elements of Object data type.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDoubleIntMap
Abstract base class for hash maps holding (key,value) associations of type
(double-->int).
|
class |
AbstractDoubleLongMap
Abstract base class for hash maps holding (key,value) associations of type
(double-->long).
|
class |
AbstractIntDoubleMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->double).
|
class |
AbstractLongDoubleMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->double).
|
class |
OpenDoubleIntHashMap
Hash map holding (key,value) associations of type (double-->int);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
class |
OpenDoubleLongHashMap
Hash map holding (key,value) associations of type (double-->long);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
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.
|
class |
OpenLongDoubleHashMap
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 | Class and Description |
---|---|
class |
AbstractFloatIntMap
Abstract base class for hash maps holding (key,value) associations of type
(float-->int).
|
class |
AbstractFloatLongMap
Abstract base class for hash maps holding (key,value) associations of type
(float-->long).
|
class |
AbstractIntFloatMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->float).
|
class |
AbstractLongFloatMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->float).
|
class |
OpenFloatIntHashMap
Hash map holding (key,value) associations of type (float-->int);
Automatically grows and shrinks as needed; Implemented using open addressing
with float hashing.
|
class |
OpenFloatLongHashMap
Hash map holding (key,value) associations of type (float-->long);
Automatically grows and shrinks as needed; Implemented using open addressing
with float hashing.
|
class |
OpenIntFloatHashMap
Hash map holding (key,value) associations of type (int-->float);
Automatically grows and shrinks as needed; Implemented using open addressing
with float hashing.
|
class |
OpenLongFloatHashMap
Hash map holding (key,value) associations of type (int-->float);
Automatically grows and shrinks as needed; Implemented using open addressing
with float hashing.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractIntIntMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->int).
|
class |
OpenIntIntHashMap
Hash map holding (key,value) associations of type (int-->int);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
class |
QuickOpenIntIntHashMap
Status: Experimental; Do not use for production yet.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractIntLongMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->long).
|
class |
AbstractLongIntMap
Abstract base class for hash maps holding (key,value) associations of type
(long-->int).
|
class |
AbstractLongLongMap
Abstract base class for hash maps holding (key,value) associations of type
(long-->long).
|
class |
OpenIntLongHashMap
Hash map holding (key,value) associations of type (int-->long);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
class |
OpenLongIntHashMap
Hash map holding (key,value) associations of type (long-->int);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
class |
OpenLongLongHashMap
Hash map holding (key,value) associations of type (long-->long);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractIntObjectMap
Abstract base class for hash maps holding (key,value) associations of type
(int-->Object).
|
class |
AbstractLongObjectMap
Abstract base class for hash maps holding (key,value) associations of type
(long-->Object).
|
class |
OpenIntObjectHashMap
Hash map holding (key,value) associations of type (int-->Object);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
class |
OpenLongObjectHashMap
Hash map holding (key,value) associations of type (long-->Object);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
Jump to the Parallel Colt Homepage