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 Serializable
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def -=(key: K): hmap.type

Remove the entry from this map having the given key.

Remove the entry from this map having the given key.

Value parameters

the

key of the entry to be removed

Attributes

def show(): Unit

Show/print this HashMap.

Show/print this HashMap.

Attributes

Concrete fields

val count: Int