package mutable
- Alphabetic
- By Inheritance
- mutable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- 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
- trait MultiSet[A] extends collection.MultiSet[A] with MultiSetOps[A, MultiSet, MultiSet[A]] with Growable[A] with Shrinkable[A]
A mutable multiset.
- class MultiSetImpl[A] extends MultiSet[A]
- 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
- 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
- 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
- type GrowingBuilder[Elem, To <: Growable[Elem]] = GrowableBuilder[Elem, To]
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) GrowingBuilder has been renamed to GrowableBuilder
- type IndexedOptimizedBuffer[A] = IndexedBuffer[A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) IndexedOptimizedBuffer has been renamed to IndexedBuffer
- type IndexedOptimizedSeq[A] = IndexedSeq[A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) IndexedOptimizedSeq has been renamed to IndexedSeq
- 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
- type Traversable[X] = Iterable[X]
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use Iterable instead of Traversable
- 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
- object MultiDict extends MapFactory[MultiDict]
- object MultiSet extends IterableFactory[MultiSet]
- object SortedMultiDict extends SortedMapFactory[SortedMultiDict]
- object SortedMultiSet extends SortedIterableFactory[SortedMultiSet]
Deprecated Value Members
- val ArrayStack: Stack.type
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use Stack instead of ArrayStack; it now uses an array-based implementation
- val Traversable: Iterable.type
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use Iterable instead of Traversable
- 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