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 MultiDict[K, V] extends collection.MultiDict[K, V] with Iterable[(K, V)] with IterableOps[(K, V), Iterable, MultiDict[K, V]] with MultiDictOps[K, V, MultiDict, MultiDict[K, V]] with Growable[(K, V)] with Shrinkable[(K, V)]

    A mutable multidict

    A mutable multidict

    K

    the type of keys

    V

    the type of values

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

    A mutable multiset.

  3. class MultiSetImpl[A] extends MultiSet[A]
  4. class SortedMultiDict[K, V] extends Iterable[(K, V)] with collection.SortedMultiDict[K, V] with IterableOps[(K, V), Iterable, SortedMultiDict[K, V]] with SortedMultiDictOps[K, V, SortedMultiDict, SortedMultiDict[K, V]] with Growable[(K, V)] with Shrinkable[(K, V)]

    A mutable multidict whose keys are sorted

    A mutable multidict whose keys are sorted

    K

    the type of keys

    V

    the type of values

  5. class SortedMultiSet[A] extends MultiSet[A] with collection.SortedMultiSet[A] with SortedMultiSetOps[A, SortedMultiSet, SortedMultiSet[A]] with MultiSetOps[A, MultiSet, 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

Deprecated Type Members

  1. type ArrayStack[X] = Stack[X]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Stack instead of ArrayStack; it now uses an array-based implementation

  2. type GrowingBuilder[Elem, To <: Growable[Elem]] = GrowableBuilder[Elem, To]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) GrowingBuilder has been renamed to GrowableBuilder

  3. type IndexedOptimizedBuffer[A] = IndexedBuffer[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) IndexedOptimizedBuffer has been renamed to IndexedBuffer

  4. type IndexedOptimizedSeq[A] = IndexedSeq[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) IndexedOptimizedSeq has been renamed to IndexedSeq

  5. 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

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

    (Since version 2.13.0) Use Iterable instead of Traversable

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

    (Since version 2.13.0) Use ArraySeq instead of WrappedArray; it can represent both, boxed and unboxed arrays

Value Members

  1. object MultiDict extends MapFactory[MultiDict]
  2. object MultiSet extends IterableFactory[MultiSet]
  3. object SortedMultiDict extends SortedMapFactory[SortedMultiDict]
  4. object SortedMultiSet extends SortedIterableFactory[SortedMultiSet]

Deprecated Value Members

  1. val ArrayStack: Stack.type
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Stack instead of ArrayStack; it now uses an array-based implementation

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

    (Since version 2.13.0) Use Iterable instead of Traversable

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

    (Since version 2.13.0) Use ArraySeq instead of WrappedArray; it can represent both, boxed and unboxed arrays

Inherited from AnyRef

Inherited from Any

Ungrouped