Packages

object HashMap extends MapFactory[HashMap]

This object provides a set of operations to create mutable.HashMap values.

Annotations
@SerialVersionUID()
Source
HashMap.scala
Linear Supertypes
MapFactory[HashMap], java.io.Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HashMap
  2. MapFactory
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[K, V](elems: (K, V)*): HashMap[K, V]
    Definition Classes
    MapFactory
  2. final def defaultInitialCapacity: Int

    The default initial capacity for the hash table

  3. final def defaultLoadFactor: Double

    The default load factor for the hash table

  4. def empty[K, V]: HashMap[K, V]
    Definition Classes
    HashMapMapFactory
  5. def from[K, V](it: IterableOnce[(K, V)]): HashMap[K, V]
    Definition Classes
    HashMapMapFactory
  6. implicit def mapFactory[K, V]: Factory[(K, V), HashMap[K, V]]
    Definition Classes
    MapFactory
  7. def newBuilder[K, V](initialCapacity: Int, loadFactor: Double): Builder[(K, V), HashMap[K, V]]
  8. def newBuilder[K, V]: Builder[(K, V), HashMap[K, V]]
    Definition Classes
    HashMapMapFactory