class |
DoubleArrayList |
An array-backed list of doubles.
|
class |
IntArrayList |
An array-backed list of ints.
|
class |
IntHashSet |
A hash set of ints, implemented using using open addressing
with linear probing for collision resolution.
|
class |
IntObjectHashMap<VType> |
A hash map of int to Object, implemented using open
addressing with linear probing for collision resolution.
|
class |
LongArrayList |
An array-backed list of longs.
|
class |
LongHashSet |
A hash set of longs, implemented using using open addressing
with linear probing for collision resolution.
|
class |
LongIntHashMap |
A hash map of long to int, implemented using open
addressing with linear probing for collision resolution.
|
class |
LongObjectHashMap<VType> |
A hash map of long to Object, implemented using open
addressing with linear probing for collision resolution.
|
class |
ObjectArrayList<KType> |
An array-backed list of Objects.
|
class |
ObjectFloatHashMap<KType> |
A hash map of Object to float, implemented using open
addressing with linear probing for collision resolution.
|
class |
ObjectHashSet<KType> |
A hash set of Objects, implemented using using open addressing
with linear probing for collision resolution.
|
class |
ObjectIntHashMap<KType> |
A hash map of Object to int, implemented using open
addressing with linear probing for collision resolution.
|
class |
ObjectIntScatterMap<KType> |
Same as ObjectIntHashMap but does not implement per-instance
key mixing strategy and uses a simpler (faster) bit distribution function.
|
class |
ObjectLongHashMap<KType> |
A hash map of Object to long, implemented using open
addressing with linear probing for collision resolution.
|
class |
ObjectObjectHashMap<KType,VType> |
A hash map of Object to Object, implemented using open
addressing with linear probing for collision resolution.
|