| Interface | Description |
|---|---|
| Equality<T> | |
| TByteFunction |
Interface for functions that accept and return one byte primitive.
|
| TByteHashingStrategy |
Interface to support pluggable hashing strategies in maps and sets.
|
| TByteProcedure |
Interface for procedures with one byte parameter.
|
| TIntFunction |
Interface for functions that accept and return one int primitive.
|
| TIntHashingStrategy |
Interface to support pluggable hashing strategies in maps and sets.
|
| TIntIntProcedure |
Interface for procedures that take two parameters of type int and int.
|
| TIntLongProcedure |
Interface for procedures that take two parameters of type int and long.
|
| TIntObjectProcedure<V> |
Interface for procedures that take two parameters of type int and Object.
|
| TIntProcedure |
Interface for procedures with one int parameter.
|
| TLongFunction |
Interface for functions that accept and return one long primitive.
|
| TLongHashingStrategy |
Interface to support pluggable hashing strategies in maps and sets.
|
| TLongIntProcedure |
Interface for procedures that take two parameters of type long and int.
|
| TLongObjectProcedure<V> |
Interface for procedures that take two parameters of type long and Object.
|
| TLongProcedure |
Interface for procedures with one long parameter.
|
| TObjectFunction<T,R> |
Interface for functions that accept and return one Object reference.
|
| TObjectHashingStrategy<T> |
Interface to support pluggable hashing strategies in maps and sets.
|
| TObjectIntProcedure<K> |
Interface for procedures that take two parameters of type Object and int.
|
| TObjectLongProcedure<K> |
Interface for procedures that take two parameters of type Object and long.
|
| TObjectObjectProcedure<K,V> |
Interface for procedures that take two Object parameters.
|
| TObjectProcedure<T> |
Interface for procedures with one Object parameter.
|
| Class | Description |
|---|---|
| PrimeFinder |
Used to keep hash table capacities prime numbers.
|
| TByteArrayList | Deprecated |
| THash |
Base class for hashtables that use open addressing to resolve
collisions.
|
| THashMap<K,V> | Deprecated |
| THashSet<E> | Deprecated |
| TIntArrayList | Deprecated |
| TIntHash |
An open addressed hashing implementation for int primitives.
|
| TIntHashSet | Deprecated |
| TIntIntHashMap | Deprecated |
| TIntIntIterator | Deprecated |
| TIntIterator | Deprecated |
| TIntLongHashMap | Deprecated |
| TIntObjectHashMap<V> | Deprecated |
| TIntObjectIterator<V> |
Iterator for maps of type int and Object.
|
| TIntStack | Deprecated
Use
it.unimi.dsi.fastutil.ints.IntArrayList |
| TLongArrayList | Deprecated |
| TLongHash |
An open addressed hashing implementation for long primitives.
|
| TLongHashSet | Deprecated |
| TLongIntHashMap | Deprecated |
| TLongObjectHashMap<V> | Deprecated |
| TObjectHash<T> |
An open addressed hashing implementation for Object types.
|
| TObjectIntHashMap<K> | Deprecated |
| TObjectIntIterator<K> |
Iterator for maps of type Object and int.
|
| TObjectLongHashMap<K> | Deprecated |
| TObjectLongIterator<K> |
Iterator for maps of type Object and long.
|
| TPrimitiveHash | Deprecated |