Packages

object MapFactory extends java.io.Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapFactory
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class Delegate[C[_, _]] extends MapFactory[C]
    Annotations
    @SerialVersionUID()

Value Members

  1. implicit def toBuildFrom[K, V, CC[_, _]](factory: MapFactory[CC]): BuildFrom[Any, (K, V), CC[K, V]]
  2. implicit def toFactory[K, V, CC[_, _]](factory: MapFactory[CC]): Factory[(K, V), CC[K, V]]

    Fixes the key and value types of factory to K and V, respectively

    Fixes the key and value types of factory to K and V, respectively

    K

    Type of keys

    V

    Type of values

    CC

    Collection type constructor of the factory (e.g. Map, HashMap, etc.)

    factory

    The factory to fix the key and value types

    returns

    A Factory that uses the given factory to build a map with keys of type K and values of type V