See: Description
Class | Description |
---|---|
AbstractIntLongMap |
Abstract base class for hash maps holding (key,value) associations of type
(int-->long).
|
AbstractLongIntMap |
Abstract base class for hash maps holding (key,value) associations of type
(long-->int).
|
AbstractLongLongMap |
Abstract base class for hash maps holding (key,value) associations of type
(long-->long).
|
OpenIntLongHashMap |
Hash map holding (key,value) associations of type (int-->long);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
OpenLongIntHashMap |
Hash map holding (key,value) associations of type (long-->int);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
OpenLongLongHashMap |
Hash map holding (key,value) associations of type (long-->long);
Automatically grows and shrinks as needed; Implemented using open addressing
with double hashing.
|
Jump to the Parallel Colt Homepage