Packages

object SeqMap extends Delegate[collection.immutable.SeqMap]

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

Value Members

  1. def apply[K, V](elems: (K, V)*): immutable.SeqMap[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
    DelegateMapFactory
  2. def empty[K, V]: immutable.SeqMap[K, V]

    An empty Map

    An empty Map

    Definition Classes
    DelegateMapFactory
  3. def from[K, V](it: IterableOnce[(K, V)]): immutable.SeqMap[K, V]

    A collection of type Map generated from given iterable object.

    A collection of type Map generated from given iterable object.

    Definition Classes
    DelegateMapFactory
  4. implicit def mapFactory[K, V]: Factory[(K, V), immutable.SeqMap[K, V]]

    The default Factory instance for maps.

    The default Factory instance for maps.

    Definition Classes
    MapFactory
  5. def newBuilder[K, V]: Builder[(K, V), immutable.SeqMap[K, V]]

    The default builder for Map objects.

    The default builder for Map objects.

    Definition Classes
    DelegateMapFactory