Packages

object MapView extends MapViewFactory

Source
MapView.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapView
  2. MapViewFactory
  3. MapFactory
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class Filter[K, +V] extends AbstractMapView[K, V]
    Annotations
    @SerialVersionUID()
  2. class FilterKeys[K, +V] extends AbstractMapView[K, V]
    Annotations
    @SerialVersionUID()
  3. class Id[K, +V] extends AbstractMapView[K, V]
    Annotations
    @SerialVersionUID()
  4. class MapValues[K, +V, +W] extends AbstractMapView[K, W]
    Annotations
    @SerialVersionUID()
  5. type SomeIterableConstr[X, Y] = IterableOps[_, AnyConstr, _]

    An IterableOps whose collection type and collection type constructor are unknown

  6. type SomeMapOps[K, +V] = MapOps[K, V, SomeIterableConstr, _]

    A MapOps whose collection type and collection type constructor are (mostly) unknown

  7. class TapEach[K, +V, +U] extends AbstractMapView[K, V]
    Annotations
    @SerialVersionUID()

Value Members

  1. def apply[K, V](elems: (K, V)*): MapView[K, V]

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

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

    Definition Classes
    MapViewMapViewFactoryMapFactory
  2. def empty[K, V]: MapView[K, V]

    An empty Map

    An empty Map

    Definition Classes
    MapViewMapViewFactoryMapFactory
  3. def from[K, V](it: SomeMapOps[K, V]): MapView[K, V]
    Definition Classes
    MapViewMapViewFactory
  4. def from[K, V](it: IterableOnce[(K, V)]): View[(K, V)]

    A collection of type Map generated from given iterable object.

    A collection of type Map generated from given iterable object.

    Definition Classes
    MapViewMapFactory
  5. implicit def mapFactory[K, V]: Factory[(K, V), View[(K, V)]]

    The default Factory instance for maps.

    The default Factory instance for maps.

    Definition Classes
    MapFactory
  6. def newBuilder[X, Y]: Builder[(X, Y), MapView[X, Y]]

    The default builder for Map objects.

    The default builder for Map objects.

    Definition Classes
    MapViewMapViewFactoryMapFactory