Packages

package mutable

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. mutable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class MultiMap[K, V] extends collection.MultiMap[K, V] with MultiMapOps[K, V, MultiMap, MultiMap[K, V]] with Growable[(K, V)] with Shrinkable[(K, V)]

    A mutable multimap

    A mutable multimap

    K

    the type of keys

    V

    the type of values

  2. class MultiSet[A] extends collection.MultiSet[A] with MultiSetOps[A, MultiSet, MultiSet[A]] with Growable[A] with Shrinkable[A]

    A mutable multiset.

  3. class SortedMultiMap[K, V] extends collection.SortedMultiMap[K, V] with SortedMultiMapOps[K, V, SortedMultiMap, SortedMultiMap[K, V]] with Growable[(K, V)] with Shrinkable[(K, V)]

    A mutable multimap whose keys are sorted

    A mutable multimap whose keys are sorted

    K

    the type of keys

    V

    the type of values

  4. class SortedMultiSet[A] extends collection.SortedMultiSet[A] with SortedMultiSetOps[A, SortedMultiSet, SortedMultiSet[A]] with Growable[A] with Shrinkable[A]

    A mutable multiset whose elements are sorted according to a given ordering.

    A mutable multiset whose elements are sorted according to a given ordering.

    A

    Type of elements

  5. type ArraySeq[X] = WrappedArray[X]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use WrappedArray instead of ArraySeq

  6. type LinearSeq[X] = Seq[X] with collection.LinearSeq[X]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) mutable.LinearSeq has been removed; use LinearSeq with mutable.Seq instead

  7. type Traversable[X] = Iterable[X]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Iterable instead of Traversable

Value Members

  1. object MultiMap extends MapFactory[MultiMap]
  2. object MultiSet extends IterableFactory[MultiSet]
  3. object SortedMultiMap extends SortedMapFactory[SortedMultiMap]
  4. object SortedMultiSet extends SortedIterableFactory[SortedMultiSet]

Deprecated Value Members

  1. val ArraySeq: WrappedArray.type
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use WrappedArray instead of ArraySeq

  2. val Traversable: Iterable.type
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Iterable instead of Traversable

Inherited from AnyRef

Inherited from Any

Ungrouped