Packages

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

K

the type of keys

V

the type of values

Linear Supertypes
Shrinkable[(K, V)], Growable[(K, V)], Clearable, collection.SortedMultiMap[K, V], SortedMultiMapOps[K, V, SortedMultiMap, SortedMultiMap[K, V]], SortedOps[K, SortedMultiMap[K, V]], collection.MultiMap[K, V], Equals, MultiMapOps[K, V, collection.MultiMap, SortedMultiMap[K, V]], collection.Iterable[(K, V)], collection.Traversable[(K, V)], collection.IterableOps[(K, V), collection.Iterable, SortedMultiMap[K, V]], IterableOnce[(K, V)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedMultiMap
  2. Shrinkable
  3. Growable
  4. Clearable
  5. SortedMultiMap
  6. SortedMultiMapOps
  7. SortedOps
  8. MultiMap
  9. Equals
  10. MultiMapOps
  11. Iterable
  12. Traversable
  13. IterableOps
  14. IterableOnce
  15. AnyRef
  16. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class MultiMapWithFilter extends WithFilter
    Definition Classes
    MultiMapOps
  2. class SortedMultiMapWithFilter extends MultiMapWithFilter
    Definition Classes
    SortedMultiMapOps
  3. class WithFilter extends collection.WithFilter[A, CC]
    Definition Classes
    IterableOps

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to any2stringadd[SortedMultiMap[K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: (K, V)](suffix: collection.Iterable[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ++=(xs: IterableOnce[(K, V)]): SortedMultiMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  6. final def +=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): SortedMultiMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  7. final def +=(elem: (K, V)): SortedMultiMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def -*=(key: K): SortedMultiMap.this.type

    Alias for removeKey

    Alias for removeKey

    Annotations
    @inline()
  9. final def --=(xs: IterableOnce[(K, V)]): SortedMultiMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. def -=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): SortedMultiMap.this.type
    Definition Classes
    Shrinkable
  11. final def -=(elem: (K, V)): SortedMultiMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  12. def ->[B](y: B): (SortedMultiMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to ArrowAssoc[SortedMultiMap[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  13. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def addAll(xs: IterableOnce[(K, V)]): SortedMultiMap.this.type
    Definition Classes
    Growable
  15. def addOne(elem: (K, V)): SortedMultiMap.this.type
    Definition Classes
    SortedMultiMap → Growable
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def canEqual(that: Any): Boolean
    Definition Classes
    MultiMap → Equals
  18. def className: String
    Definition Classes
    IterableOps
  19. def clear(): Unit
    Definition Classes
    SortedMultiMap → Clearable
  20. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  21. def coll: SortedMultiMap.this.type
    Attributes
    protected[this]
    Definition Classes
    Iterable → IterableOps
  22. def collect[L, W](pf: PartialFunction[(K, V), (L, W)])(implicit arg0: Ordering[L]): SortedMultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    pf

    transformation to apply

    returns

    a sorted multimap that contains all the entries of this sorted multimap after they have been successfully transformed by the given partial function pf

    Definition Classes
    SortedMultiMapOps
  23. def collect[L, W](pf: PartialFunction[(K, V), (L, W)]): collection.MultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    pf

    transformation to apply

    returns

    a multimap that contains all the entries of this multimap after they have been successfully transformed by the given partial function pf

    Definition Classes
    MultiMapOps
  24. def collect[B](pf: PartialFunction[(K, V), B]): collection.Iterable[B]
    Definition Classes
    IterableOps
  25. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOps
  26. def collectSets[L, W](pf: PartialFunction[(K, collection.Set[V]), (L, collection.Set[W])])(implicit arg0: Ordering[L]): SortedMultiMap[L, W]

    L

    the new type of keys

    W

    the new type of values

    pf

    the partial function to apply to each set of values

    returns

    a sorted multimap that contains all the entries of this sorted multimap, after they have been successfully transformed by the given partial function

    Definition Classes
    SortedMultiMapOps
  27. def collectSets[L, W](pf: PartialFunction[(K, collection.Set[V]), (L, collection.Set[W])]): collection.MultiMap[L, W]

    L

    the new type of keys

    W

    the new type of values

    pf

    the partial function to apply to each set of values

    returns

    a multimap that contains all the entries of this multimap, after they have been successfully transformed by the given partial function

    Definition Classes
    MultiMapOps
  28. def concat(that: collection.Iterable[(K, V)]): SortedMultiMap[K, V]

    Concatenate the entries given in that iterable to this multimap

    Concatenate the entries given in that iterable to this multimap

    Definition Classes
    MultiMapOps
  29. def concat[B >: (K, V)](suffix: collection.Iterable[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
  30. def concatSets(that: collection.Iterable[(K, collection.Set[V])]): SortedMultiMap[K, V]

    that

    the collection of values to add to this multimap

    returns

    a new multimap concatenating the values of this multimap and that collection of values

    Definition Classes
    MultiMapOps
  31. def containsEntry(kv: (K, V)): Boolean

    kv

    the binding to test

    returns

    Whether the binding kv is contained in this multimap or not

    Definition Classes
    MultiMapOps
  32. def containsKey(key: K): Boolean

    key

    the key to test

    returns

    Whether key has at least one occurrence in this multimap or not

    Definition Classes
    MultiMapOps
  33. def containsValue(value: V): Boolean

    value

    the value to test

    returns

    Whether at least one key is associated to the given value

    Definition Classes
    MultiMapOps
  34. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): xs.type
    Definition Classes
    IterableOps
  35. def count(p: ((K, V)) ⇒ Boolean): Int
    Definition Classes
    IterableOps
  36. def drop(n: Int): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  37. def dropRight(n: Int): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  38. def dropWhile(p: ((K, V)) ⇒ Boolean): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  39. def ensuring(cond: (SortedMultiMap[K, V]) ⇒ Boolean, msg: ⇒ Any): SortedMultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to Ensuring[SortedMultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. def ensuring(cond: (SortedMultiMap[K, V]) ⇒ Boolean): SortedMultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to Ensuring[SortedMultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. def ensuring(cond: Boolean, msg: ⇒ Any): SortedMultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to Ensuring[SortedMultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  42. def ensuring(cond: Boolean): SortedMultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to Ensuring[SortedMultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  43. def entryExists(key: K, p: (V) ⇒ Boolean): Boolean

    returns

    Whether there exists a value associated with the given key that satisfies the given predicate p

    Definition Classes
    MultiMapOps
  44. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. def equals(o: Any): Boolean
    Definition Classes
    MultiMap → Equals → AnyRef → Any
  46. def exists(p: ((K, V)) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  47. def filter(pred: ((K, V)) ⇒ Boolean): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  48. def filterNot(pred: ((K, V)) ⇒ Boolean): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  49. def filterSets(p: ((K, collection.Set[V])) ⇒ Boolean): SortedMultiMap[K, V]

    returns

    a multimap that contains all the entries of this multimap that satisfy the predicate p

    Definition Classes
    MultiMapOps
  50. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  51. def find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]
    Definition Classes
    IterableOps
  52. def firstKey: K
    Definition Classes
    SortedMultiMapOps → SortedOps
  53. def flatMap[L, W](f: ((K, V)) ⇒ IterableOnce[(L, W)])(implicit arg0: Ordering[L]): SortedMultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

    a sorted multimap that contains all the entries of this sorted multimap, transformed by the function f and concatenated

    Definition Classes
    SortedMultiMapOps
  54. def flatMap[L, W](f: ((K, V)) ⇒ IterableOnce[(L, W)]): collection.MultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

    a multimap that contains all the entries of this multimap, transformed by the function f and concatenated

    Definition Classes
    MultiMapOps
  55. def flatMap[B](f: ((K, V)) ⇒ IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
  56. def flatMapSets[L, W](f: ((K, collection.Set[V])) ⇒ IterableOnce[(L, collection.Set[W])])(implicit arg0: Ordering[L]): SortedMultiMap[L, W]

    L

    the new type of keys

    W

    the type of values of the returned sorted multimap

    f

    the function to apply

    returns

    a new sorted multimap resulting from applying the given function f to each group of values of this sorted multimap and concatenating the results

    Definition Classes
    SortedMultiMapOps
  57. def flatMapSets[L, W](f: ((K, collection.Set[V])) ⇒ IterableOnce[(L, collection.Set[W])]): collection.MultiMap[L, W]

    L

    the new type of keys

    W

    the type of values of the returned multimap

    f

    the function to apply

    returns

    a new multimap resulting from applying the given function f to each group of values of this multimap and concatenating the results

    Definition Classes
    MultiMapOps
  58. def flatten[B](implicit asIterable: ((K, V)) ⇒ IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
  59. def foldLeft[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Definition Classes
    IterableOps
  60. def foldRight[B](z: B)(op: ((K, V), B) ⇒ B): B
    Definition Classes
    IterableOps
  61. def forall(p: ((K, V)) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  62. def foreach[U](f: ((K, V)) ⇒ U): Unit
    Definition Classes
    IterableOps
  63. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to StringFormat[SortedMultiMap[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  64. def from(from: K): SortedMultiMap[K, V]
    Definition Classes
    SortedOps
  65. final def fromIterable[E](it: collection.Iterable[E]): collection.Iterable[E]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  66. def fromSets[L, W](it: collection.Iterable[(L, collection.Set[W])]): collection.MultiMap[L, W]
    Attributes
    protected[this]
    Definition Classes
    MultiMapOps
  67. def fromSpecificIterable(coll: collection.Iterable[(K, V)]): SortedMultiMap[K, V]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiMap → IterableOps
  68. def fromSpecificSets(it: collection.Iterable[(K, collection.Set[V])]): SortedMultiMap[K, V]
    Attributes
    protected[this]
    Definition Classes
    MultiMapOps
  69. def get(key: K): collection.Set[V]

    key

    key to look up

    returns

    The set of values associated with the given key, or the empty set if there is no such association

    Definition Classes
    MultiMapOps
  70. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  71. def groupBy[K](f: ((K, V)) ⇒ K): immutable.Map[K, SortedMultiMap[K, V]]
    Definition Classes
    IterableOps
  72. def groupMap[K, B](key: ((K, V)) ⇒ K)(f: ((K, V)) ⇒ B): immutable.Map[K, collection.Iterable[B]]
    Definition Classes
    IterableOps
  73. def groupMapReduce[K, B](key: ((K, V)) ⇒ K)(f: ((K, V)) ⇒ B)(reduce: (B, B) ⇒ B): immutable.Map[K, B]
    Definition Classes
    IterableOps
  74. def grouped(size: Int): Iterator[SortedMultiMap[K, V]]
    Definition Classes
    IterableOps
  75. def hashCode(): Int
    Definition Classes
    MultiMap → AnyRef → Any
  76. def head: (K, V)
    Definition Classes
    IterableOps
  77. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  78. def init: SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  79. def inits: Iterator[SortedMultiMap[K, V]]
    Definition Classes
    IterableOps
  80. def isEmpty: Boolean
    Definition Classes
    IterableOps
  81. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  82. def iterableFactory: IterableFactoryLike[collection.Iterable]
    Definition Classes
    SortedMultiMap → IterableOps
  83. def iterator(): Iterator[(K, V)]
    Definition Classes
    MultiMapOps → IterableOnce
  84. def iteratorFrom(start: K): Iterator[(K, V)]
    Definition Classes
    SortedMultiMapOps
  85. def keySet: collection.Set[K]

    returns

    the set of keys

    Definition Classes
    MultiMapOps
  86. def knownSize: Int
    Definition Classes
    IterableOps → IterableOnce
  87. def last: (K, V)
    Definition Classes
    IterableOps
  88. def lastKey: K
    Definition Classes
    SortedMultiMapOps → SortedOps
  89. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  90. def map[L, W](f: ((K, V)) ⇒ (L, W))(implicit arg0: Ordering[L]): SortedMultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

    a sorted multimap that contains all the entries of this sorted multimap, transformed by the function f

    Definition Classes
    SortedMultiMapOps
  91. def map[L, W](f: ((K, V)) ⇒ (L, W)): collection.MultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

    a multimap that contains all the entries of this multimap, transformed by the function f

    Definition Classes
    MultiMapOps
  92. def map[B](f: ((K, V)) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps
  93. def mapSets[L, W](f: ((K, collection.Set[V])) ⇒ (L, collection.Set[W]))(implicit arg0: Ordering[L]): SortedMultiMap[L, W]

    Builds a new sorted multimap by applying a function to all groups of elements

    Builds a new sorted multimap by applying a function to all groups of elements

    L

    the type of keys of the returned collection

    f

    the function to apply

    returns

    a new collection resulting from applying the given function f to each pair of element and its number of occurrences of this sorted multiset and collecting the results.

    Definition Classes
    SortedMultiMapOps
  94. def mapSets[L, W](f: ((K, collection.Set[V])) ⇒ (L, collection.Set[W])): collection.MultiMap[L, W]

    L

    the new type of keys

    W

    the type of values of the returned multimap

    f

    the function to apply

    returns

    a new multimap resulting from applying the given function f to each group of values of this multimap and collecting the results

    Definition Classes
    MultiMapOps
  95. def max[B >: (K, V)](implicit ord: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  96. def maxBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  97. def min[B >: (K, V)](implicit ord: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  98. def minBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  99. def mkString: String
    Definition Classes
    IterableOps
  100. def mkString(sep: String): String
    Definition Classes
    IterableOps
  101. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOps
  102. def multiMapFactory: MapFactory[collection.MultiMap]
    Definition Classes
    SortedMultiMapOpsMultiMapOps
  103. def multiMapFromIterable[L, W](it: collection.Iterable[(L, W)]): collection.MultiMap[L, W]
    Attributes
    protected[this]
    Definition Classes
    MultiMapOps
  104. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  105. def newSpecificBuilder(): Builder[(K, V), SortedMultiMap[K, V]]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiMap → IterableOps
  106. def nonEmpty: Boolean
    Definition Classes
    IterableOps
  107. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  108. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  109. implicit val ordering: Ordering[K]
    Definition Classes
    SortedMultiMap → SortedOps
  110. def partition(p: ((K, V)) ⇒ Boolean): (SortedMultiMap[K, V], SortedMultiMap[K, V])
    Definition Classes
    IterableOps
  111. def product[B >: (K, V)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  112. def range(from: K, until: K): SortedMultiMap[K, V]
    Definition Classes
    SortedOps
  113. def rangeImpl(from: Option[K], until: Option[K]): SortedMultiMap[K, V]
    Definition Classes
    SortedMultiMap → SortedOps
  114. def rangeTo(to: K): SortedMultiMap[K, V]
    Definition Classes
    SortedMultiMapOps → SortedOps
  115. def reduce[B >: (K, V)](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOps
  116. def reduceLeft[B >: (K, V)](op: (B, (K, V)) ⇒ B): B
    Definition Classes
    IterableOps
  117. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  118. def reduceOption[B >: (K, V)](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  119. def reduceRight[B >: (K, V)](op: ((K, V), B) ⇒ B): B
    Definition Classes
    IterableOps
  120. def reduceRightOption[B >: (K, V)](op: ((K, V), B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  121. def removeKey(key: K): SortedMultiMap.this.type

    Removes all the entries associated with the given key

    Removes all the entries associated with the given key

    returns

    the collection itself

  122. def reversed: collection.Iterable[(K, V)]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  123. def scan[B >: (K, V)](z: B)(op: (B, B) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps
  124. def scanLeft[B](z: B)(op: (B, (K, V)) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps
  125. def scanRight[B](z: B)(op: ((K, V), B) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps
  126. def sets: collection.SortedMap[K, collection.Set[V]]

    returns

    All the elements contained in this multimap, grouped by key

    Definition Classes
    SortedMultiMapSortedMultiMapOpsMultiMapOps
  127. def size: Int
    Definition Classes
    IterableOps
  128. def slice(from: Int, until: Int): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  129. def sliding(size: Int, step: Int): Iterator[SortedMultiMap[K, V]]
    Definition Classes
    IterableOps
  130. def sliding(size: Int): Iterator[SortedMultiMap[K, V]]
    Definition Classes
    IterableOps
  131. def sortedFromIterable[L, W](it: collection.Iterable[(L, W)])(implicit arg0: Ordering[L]): SortedMultiMap[L, W]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiMapSortedMultiMapOps
  132. def sortedFromSets[L, W](it: collection.Iterable[(L, collection.Set[W])])(implicit arg0: Ordering[L]): SortedMultiMap[L, W]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiMapOps
  133. def sortedMultiMapFactory: SortedMapFactory[SortedMultiMap]
    Definition Classes
    SortedMultiMapSortedMultiMapOps
  134. def span(p: ((K, V)) ⇒ Boolean): (SortedMultiMap[K, V], SortedMultiMap[K, V])
    Definition Classes
    IterableOps
  135. def splitAt(n: Int): (SortedMultiMap[K, V], SortedMultiMap[K, V])
    Definition Classes
    IterableOps
  136. def subtractAll(xs: IterableOnce[(K, V)]): SortedMultiMap.this.type
    Definition Classes
    Shrinkable
  137. def subtractOne(elem: (K, V)): SortedMultiMap.this.type
    Definition Classes
    SortedMultiMap → Shrinkable
  138. def sum[B >: (K, V)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  139. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  140. def tail: SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  141. def tails: Iterator[SortedMultiMap[K, V]]
    Definition Classes
    IterableOps
  142. def take(n: Int): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  143. def takeRight(n: Int): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  144. def takeWhile(p: ((K, V)) ⇒ Boolean): SortedMultiMap[K, V]
    Definition Classes
    IterableOps
  145. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOps
  146. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOps
  147. def toIndexedSeq: immutable.IndexedSeq[(K, V)]
    Definition Classes
    IterableOps
  148. final def toIterable: SortedMultiMap.this.type
    Definition Classes
    Iterable → IterableOps
  149. def toList: List[(K, V)]
    Definition Classes
    IterableOps
  150. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
    Definition Classes
    IterableOps
  151. def toSeq: immutable.Seq[(K, V)]
    Definition Classes
    IterableOps
  152. def toSet[B >: (K, V)]: immutable.Set[B]
    Definition Classes
    IterableOps
  153. def toString(): String
    Definition Classes
    IterableOps → Any
  154. def toVector: Vector[(K, V)]
    Definition Classes
    IterableOps
  155. def transpose[B](implicit asIterable: ((K, V)) ⇒ collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Definition Classes
    IterableOps
  156. def unsorted: collection.MultiMap[K, V]

    this sorted multimap upcasted to an unsorted multimap

    this sorted multimap upcasted to an unsorted multimap

    Definition Classes
    SortedMultiMapSortedMultiMapOps
  157. def until(until: K): SortedMultiMap[K, V]
    Definition Classes
    SortedOps
  158. def unzip[A1, A2](implicit asPair: ((K, V)) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Definition Classes
    IterableOps
  159. def values: collection.Iterable[V]

    returns

    all the values contained in this multimap

    Definition Classes
    MultiMapOps
  160. def view: View[(K, V)]
    Definition Classes
    IterableOps
  161. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  162. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  163. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  164. def withFilter(p: ((K, V)) ⇒ Boolean): SortedMultiMapWithFilter
    Definition Classes
    SortedMultiMapOpsMultiMapOps → IterableOps
  165. def zip[B](that: collection.Iterable[B]): collection.Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  166. def zipAll[A1 >: (K, V), B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Definition Classes
    IterableOps
  167. def zipWithIndex: collection.Iterable[((K, V), Int)]
    Definition Classes
    IterableOps
  168. def [B](y: B): (SortedMultiMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to ArrowAssoc[SortedMultiMap[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldLeft instead of /: on IterableOnce

  2. final def /:[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def :\[B](z: B)(op: ((K, V), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldRight instead of :\ on IterableOnce

  4. final def :\[B](z: B)(op: ((K, V), B) ⇒ B): B
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  5. def find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().find instead of .find on IterableOnce

  6. def flatMap[B](f: ((K, V)) ⇒ IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().flatMap instead of .flatMap on IterableOnce or consider requiring an Iterable

  7. def foldLeft[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldLeft instead of .foldLeft on IterableOnce

  8. def foldRight[B](z: B)(op: ((K, V), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldRight instead of .foldLeft on IterableOnce

  9. def foreach[U](f: ((K, V)) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foreach(...) instead of .foreach(...) on IterableOnce

  10. final def hasDefiniteSize: Boolean
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  11. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().isEmpty instead of .isEmpty on IterableOnce

  12. def map[B](f: ((K, V)) ⇒ B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().map instead of .map on IterableOnce or consider requiring an Iterable

  13. def mkString: String
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce

  14. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce

  15. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce

  16. final def stringPrefix: String
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use className instead of stringPrefix

  17. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it).toArray

  18. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

  19. final def toBuffer[B >: (K, V)]: Buffer[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

  20. def toIterator: Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) toIterator has been renamed to iterator()

  21. final def toIterator: Iterator[(K, V)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator() instead of .toIterator

  22. def toList: List[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use List.from(it) instead of it.toList

  23. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Map.from(it) instead of it.toVector on IterableOnce

  24. def toSeq: immutable.Seq[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Seq.from(it) instead of it.toSeq

  25. def toSet[B >: A]: immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Set.from(it) instead of it.toSet

  26. def toStream: LazyList[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use LazyList.from(it) instead of it.toStream

  27. final def toStream: LazyList[(K, V)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use LazyList.from(it) instead of it.toStream

  28. def toVector: Vector[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiMap: IterableOnceExtensionMethods[(K, V)]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Vector.from(it) instead of it.toVector on IterableOnce

Inherited from Shrinkable[(K, V)]

Inherited from Growable[(K, V)]

Inherited from Clearable

Inherited from collection.SortedMultiMap[K, V]

Inherited from SortedMultiMapOps[K, V, SortedMultiMap, SortedMultiMap[K, V]]

Inherited from SortedOps[K, SortedMultiMap[K, V]]

Inherited from collection.MultiMap[K, V]

Inherited from Equals

Inherited from MultiMapOps[K, V, collection.MultiMap, SortedMultiMap[K, V]]

Inherited from collection.Iterable[(K, V)]

Inherited from collection.Traversable[(K, V)]

Inherited from collection.IterableOps[(K, V), collection.Iterable, SortedMultiMap[K, V]]

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods from SortedMultiMap[K, V] to IterableOnceExtensionMethods[(K, V)]

Inherited by implicit conversion any2stringadd from SortedMultiMap[K, V] to any2stringadd[SortedMultiMap[K, V]]

Inherited by implicit conversion StringFormat from SortedMultiMap[K, V] to StringFormat[SortedMultiMap[K, V]]

Inherited by implicit conversion Ensuring from SortedMultiMap[K, V] to Ensuring[SortedMultiMap[K, V]]

Inherited by implicit conversion ArrowAssoc from SortedMultiMap[K, V] to ArrowAssoc[SortedMultiMap[K, V]]

Ungrouped