JHashMap
scalation.database.JHashMap
class JHashMap[K, V](initialCap: Int, loadFactor: Float)(implicit evidence$1: ClassTag[K], evidence$2: ClassTag[V]) extends Serializable
The JHashMap
class provides hash maps that use the Separate Chaining algorithm with several optimizations. It uses on Java's HashMap
and can be used for building Unique Indices.
Type parameters
- K
-
the type of the keys contained in this hash map
- V
-
the base-type of the values assigned to keys in this hash map
Value parameters
- initialCap
-
the initial hash table size (number of slots)
- loadFactor
-
the load factor (number of keys over number of slots)
Attributes
- See also
-
java.util.HashMap
- Graph
-
- Supertypes
-
trait Serializableclass Objecttrait Matchableclass Any
Members list
In this article