Packages

object WeakHashMap extends MutableMapFactory[WeakHashMap] with Serializable

This object provides a set of operations needed to create WeakHashMap values.

Source
WeakHashMap.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WeakHashMap
  2. Serializable
  3. Serializable
  4. MutableMapFactory
  5. MapFactory
  6. GenMapFactory
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class MapCanBuildFrom [A, B] extends CanBuildFrom[Coll, (A, B), CC[A, B]]

    The standard CanBuildFrom class for maps.

    The standard CanBuildFrom class for maps.

    Definition Classes
    GenMapFactory
  2. type Coll = WeakHashMap[_, _]

    The type constructor of the collection that can be built by this factory

    The type constructor of the collection that can be built by this factory

    Definition Classes
    GenMapFactory

Value Members

  1. def apply[A, B](elems: (A, B)*): WeakHashMap[A, B]

    A collection of type Map that contains given key/value bindings.

    A collection of type Map that contains given key/value bindings.

    A

    the type of the keys

    B

    the type of the associated values

    elems

    the key/value pairs that make up the map

    returns

    a new map consisting key/value pairs given by elems.

    Definition Classes
    GenMapFactory
  2. implicit def canBuildFrom[A, B]: CanBuildFrom[Coll, (A, B), WeakHashMap[A, B]]
  3. def empty[A, B]: WeakHashMap[A, B]

    An empty WeakHashMap

    An empty WeakHashMap

    Definition Classes
    WeakHashMapMapFactoryGenMapFactory
  4. def newBuilder[A, B]: Builder[(A, B), WeakHashMap[A, B]]

    The default builder for Map objects.

    The default builder for Map objects.

    A

    the type of the keys

    B

    the type of the associated values

    Definition Classes
    MutableMapFactoryGenMapFactory