See: Description
Interface | Description |
---|---|
DoubleIterator |
Iterator interface for primitive double iteration
|
FloatIterator |
Iterator interface for primitive int iteration
|
IntIterator |
Iterator interface for primitive int iteration
|
Class | Description |
---|---|
ArrayHashMap<K,V> |
An Array-based hashtable which maps, similar to Java's HashMap, only
performance tests showed it performs better.
|
FloatToObjectMap<T> |
An Array-based hashtable which maps primitive float to Objects of generic type
T.
|
IntArray |
A Class wrapper for a grow-able int[] which can be sorted and intersect with
other IntArrays.
|
IntHashSet |
A Set or primitive int.
|
IntToDoubleMap |
An Array-based hashtable which maps primitive int to a primitive double.
|
IntToIntMap |
An Array-based hashtable which maps primitive int to primitive int.
|
IntToObjectMap<T> |
An Array-based hashtable which maps primitive int to Objects of generic type
T.
|
LRUHashMap<K,V> |
LRUHashMap is an extension of Java's HashMap, which has a bounded size();
When it reaches that size, each time a new element is added, the least
recently used (LRU) entry is removed.
|
ObjectToFloatMap<K> |
An Array-based hashtable which maps Objects of generic type
T to primitive float values.
|
ObjectToIntMap<K> |
An Array-based hashtable which maps Objects of generic type
T to primitive int values.
|