Packages

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

K

the type of keys

V

the type of values

Linear Supertypes
Shrinkable[(K, V)], Growable[(K, V)], Clearable, collection.SortedMultiDict[K, V], SortedMultiDictOps[K, V, [X, Y]SortedMultiDict[X, Y], SortedMultiDict[K, V]], SortedOps[K, SortedMultiDict[K, V]], collection.MultiDict[K, V], Equals, MultiDictOps[K, V, collection.MultiDict, SortedMultiDict[K, V]], Iterable[(K, V)], collection.Iterable[(K, V)], IterableFactoryDefaults[(K, V), [x]Iterable[x]], IterableOps[(K, V), [_]Iterable[_], SortedMultiDict[K, V]], IterableOnceOps[(K, V), [_]Iterable[_], SortedMultiDict[K, V]], IterableOnce[(K, V)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedMultiDict
  2. Shrinkable
  3. Growable
  4. Clearable
  5. SortedMultiDict
  6. SortedMultiDictOps
  7. SortedOps
  8. MultiDict
  9. Equals
  10. MultiDictOps
  11. Iterable
  12. Iterable
  13. IterableFactoryDefaults
  14. IterableOps
  15. IterableOnceOps
  16. IterableOnce
  17. AnyRef
  18. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: (K, V)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ++=(elems: IterableOnce[(K, V)]): SortedMultiDict.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  5. final def +=(elem: (K, V)): SortedMultiDict.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  6. final def -*=(key: K): SortedMultiDict.this.type

    Alias for removeKey

    Alias for removeKey

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

    L

    new type of keys

    W

    new type of values

    pf

    transformation to apply

    returns

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

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

    L

    new type of keys

    W

    new type of values

    pf

    transformation to apply

    returns

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

    Definition Classes
    MultiDictOps
  24. def collect[B](pf: PartialFunction[(K, V), B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  25. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOnceOps
  26. def collectSets[L, W](pf: PartialFunction[(K, collection.Set[V]), (L, collection.Set[W])])(implicit arg0: Ordering[L]): SortedMultiDict[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 multidict that contains all the entries of this sorted multidict, after they have been successfully transformed by the given partial function

    Definition Classes
    SortedMultiDictOps
  27. def collectSets[L, W](pf: PartialFunction[(K, collection.Set[V]), (L, collection.Set[W])]): collection.MultiDict[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 multidict that contains all the entries of this multidict, after they have been successfully transformed by the given partial function

    Definition Classes
    MultiDictOps
  28. def concat(that: IterableOnce[(K, V)]): SortedMultiDict[K, V]

    Concatenate the entries given in that iterable to this multidict

    Concatenate the entries given in that iterable to this multidict

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

    that

    the collection of values to add to this multidict

    returns

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

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

    kv

    the binding to test

    returns

    Whether the binding kv is contained in this multidict or not

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

    key

    the key to test

    returns

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

    Definition Classes
    MultiDictOps
  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
    MultiDictOps
  34. def copyToArray[B >: (K, V)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  35. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  36. def copyToArray[B >: (K, V)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  37. def corresponds[B](that: IterableOnce[B])(p: ((K, V), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  38. def count(p: ((K, V)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  39. def drop(n: Int): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  40. def dropRight(n: Int): SortedMultiDict[K, V]
    Definition Classes
    IterableOps
  41. def dropWhile(p: ((K, V)) => Boolean): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  42. def empty: SortedMultiDict[K, V]
    Definition Classes
    SortedMultiDictSortedMultiDictMultiDict → IterableFactoryDefaults → IterableOps
  43. def ensuring(cond: (SortedMultiDict[K, V]) => Boolean, msg: => Any): SortedMultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toEnsuring[SortedMultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. def ensuring(cond: (SortedMultiDict[K, V]) => Boolean): SortedMultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toEnsuring[SortedMultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. def ensuring(cond: Boolean, msg: => Any): SortedMultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toEnsuring[SortedMultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: Boolean): SortedMultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toEnsuring[SortedMultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. 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
    MultiDictOps
  48. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  49. def equals(o: Any): Boolean
    Definition Classes
    MultiDict → Equals → AnyRef → Any
  50. def exists(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  51. def filter(pred: ((K, V)) => Boolean): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  52. def filterNot(pred: ((K, V)) => Boolean): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def filterSets(p: ((K, collection.Set[V])) => Boolean): SortedMultiDict[K, V]

    returns

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

    Definition Classes
    MultiDictOps
  54. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  55. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  56. def firstKey: K
    Definition Classes
    SortedMultiDictOps → SortedOps
  57. def flatMap[L, W](f: ((K, V)) => IterableOnce[(L, W)])(implicit arg0: Ordering[L]): SortedMultiDict[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

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

    Definition Classes
    SortedMultiDictOps
  58. def flatMap[L, W](f: ((K, V)) => IterableOnce[(L, W)]): collection.MultiDict[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

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

    Definition Classes
    MultiDictOps
  59. def flatMap[B](f: ((K, V)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  60. def flatMapSets[L, W](f: ((K, collection.Set[V])) => IterableOnce[(L, collection.Set[W])])(implicit arg0: Ordering[L]): SortedMultiDict[L, W]

    L

    the new type of keys

    W

    the type of values of the returned sorted multidict

    f

    the function to apply

    returns

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

    Definition Classes
    SortedMultiDictOps
  61. def flatMapSets[L, W](f: ((K, collection.Set[V])) => IterableOnce[(L, collection.Set[W])]): collection.MultiDict[L, W]

    L

    the new type of keys

    W

    the type of values of the returned multidict

    f

    the function to apply

    returns

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

    Definition Classes
    MultiDictOps
  62. def flatten[B](implicit asIterable: ((K, V)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  63. def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  64. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  65. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  66. def forall(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  67. def foreach[U](f: ((K, V)) => U): Unit
    Definition Classes
    IterableOnceOps
  68. def fromSets[L, W](it: collection.Iterable[(L, collection.Set[W])]): collection.MultiDict[L, W]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  69. def fromSpecific(coll: IterableOnce[(K, V)]): SortedMultiDict[K, V]
    Attributes
    protected
    Definition Classes
    SortedMultiDictSortedMultiDictMultiDict → IterableFactoryDefaults → IterableOps
  70. def fromSpecificSets(it: collection.Iterable[(K, collection.Set[V])]): SortedMultiDict[K, V]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  71. 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
    MultiDictOps
  72. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  73. def groupBy[K](f: ((K, V)) => K): immutable.Map[K, SortedMultiDict[K, V]]
    Definition Classes
    IterableOps
  74. def groupMap[K, B](key: ((K, V)) => K)(f: ((K, V)) => B): immutable.Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  75. def groupMapReduce[K, B](key: ((K, V)) => K)(f: ((K, V)) => B)(reduce: (B, B) => B): immutable.Map[K, B]
    Definition Classes
    IterableOps
  76. def grouped(size: Int): Iterator[SortedMultiDict[K, V]]
    Definition Classes
    IterableOps
  77. def hashCode(): Int
    Definition Classes
    MultiDict → AnyRef → Any
  78. def head: (K, V)
    Definition Classes
    IterableOps
  79. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  80. def init: SortedMultiDict[K, V]
    Definition Classes
    IterableOps
  81. def inits: Iterator[SortedMultiDict[K, V]]
    Definition Classes
    IterableOps
  82. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  83. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  84. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  85. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  86. def iterator: Iterator[(K, V)]
    Definition Classes
    MultiDictOps → IterableOnce
  87. def iteratorFrom(start: K): Iterator[(K, V)]
    Definition Classes
    SortedMultiDictOps
  88. def keySet: collection.Set[K]

    returns

    the set of keys

    Definition Classes
    MultiDictOps
  89. def knownSize: Int
    Definition Classes
    SortedMultiDict → Growable → IterableOnce
  90. def last: (K, V)
    Definition Classes
    IterableOps
  91. def lastKey: K
    Definition Classes
    SortedMultiDictOps → SortedOps
  92. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  93. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, SortedMultiDict.this.type]
    Definition Classes
    Iterable
  94. def map[L, W](f: ((K, V)) => (L, W))(implicit arg0: Ordering[L]): SortedMultiDict[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

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

    Definition Classes
    SortedMultiDictOps
  95. def map[L, W](f: ((K, V)) => (L, W)): collection.MultiDict[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

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

    Definition Classes
    MultiDictOps
  96. def map[B](f: ((K, V)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  97. def mapSets[L, W](f: ((K, collection.Set[V])) => (L, collection.Set[W]))(implicit arg0: Ordering[L]): SortedMultiDict[L, W]

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

    Builds a new sorted multidict 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
    SortedMultiDictOps
  98. def mapSets[L, W](f: ((K, collection.Set[V])) => (L, collection.Set[W])): collection.MultiDict[L, W]

    L

    the new type of keys

    W

    the type of values of the returned multidict

    f

    the function to apply

    returns

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

    Definition Classes
    MultiDictOps
  99. def max[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  100. def maxBy[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  101. def maxByOption[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  102. def maxOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  103. def min[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  104. def minBy[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  105. def minByOption[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  106. def minOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  107. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  108. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  109. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  110. def multiDictFactory: MapFactory[collection.MultiDict]
    Definition Classes
    MultiDictMultiDictOps
  111. def multiDictFromIterable[L, W](it: collection.Iterable[(L, W)]): collection.MultiDict[L, W]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  112. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  113. def newSpecificBuilder: Builder[(K, V), SortedMultiDict[K, V]]
    Attributes
    protected
    Definition Classes
    SortedMultiDictSortedMultiDictMultiDict → IterableFactoryDefaults → IterableOps
  114. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  115. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  116. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  117. implicit val ordering: Ordering[K]
    Definition Classes
    SortedMultiDict → SortedOps
  118. def partition(p: ((K, V)) => Boolean): (SortedMultiDict[K, V], SortedMultiDict[K, V])
    Definition Classes
    IterableOps
  119. def partitionMap[A1, A2](f: ((K, V)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  120. def product[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  121. def range(from: K, until: K): SortedMultiDict[K, V]
    Definition Classes
    SortedOps
  122. def rangeFrom(from: K): SortedMultiDict[K, V]
    Definition Classes
    SortedOps
  123. def rangeImpl(from: Option[K], until: Option[K]): SortedMultiDict[K, V]
    Definition Classes
    SortedMultiDict → SortedOps
  124. def rangeTo(to: K): SortedMultiDict[K, V]
    Definition Classes
    SortedMultiDictOps → SortedOps
  125. def rangeUntil(until: K): SortedMultiDict[K, V]
    Definition Classes
    SortedOps
  126. def reduce[B >: (K, V)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  127. def reduceLeft[B >: (K, V)](op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  128. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  129. def reduceOption[B >: (K, V)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  130. def reduceRight[B >: (K, V)](op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  131. def reduceRightOption[B >: (K, V)](op: ((K, V), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  132. def removeKey(key: K): SortedMultiDict.this.type

    Removes all the entries associated with the given key

    Removes all the entries associated with the given key

    returns

    the collection itself

  133. def reversed: collection.Iterable[(K, V)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  134. def scan[B >: (K, V)](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  135. def scanLeft[B](z: B)(op: (B, (K, V)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  136. def scanRight[B](z: B)(op: ((K, V), B) => B): Iterable[B]
    Definition Classes
    IterableOps
  137. def sets: collection.SortedMap[K, collection.Set[V]]

    returns

    All the elements contained in this multidict, grouped by key

    Definition Classes
    SortedMultiDictSortedMultiDictOpsMultiDictOps
  138. def size: Int
    Definition Classes
    IterableOnceOps
  139. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  140. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  141. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  142. def slice(from: Int, until: Int): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  143. def sliding(size: Int, step: Int): Iterator[SortedMultiDict[K, V]]
    Definition Classes
    IterableOps
  144. def sliding(size: Int): Iterator[SortedMultiDict[K, V]]
    Definition Classes
    IterableOps
  145. def sortedFromIterable[L, W](it: collection.Iterable[(L, W)])(implicit arg0: Ordering[L]): SortedMultiDict[L, W]
    Attributes
    protected
    Definition Classes
    SortedMultiDictOps
  146. def sortedFromSets[L, W](it: collection.Iterable[(L, collection.Set[W])])(implicit arg0: Ordering[L]): SortedMultiDict[L, W]
    Attributes
    protected
    Definition Classes
    SortedMultiDictOps
  147. def sortedMultiDictFactory: SortedMapFactory[SortedMultiDict]
  148. def span(p: ((K, V)) => Boolean): (SortedMultiDict[K, V], SortedMultiDict[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  149. def splitAt(n: Int): (SortedMultiDict[K, V], SortedMultiDict[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  150. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, V), S]): S
    Definition Classes
    IterableOnce
  151. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  152. def subtractAll(xs: IterableOnce[(K, V)]): SortedMultiDict.this.type
    Definition Classes
    Shrinkable
  153. def subtractOne(elem: (K, V)): SortedMultiDict.this.type
    Definition Classes
    SortedMultiDict → Shrinkable
  154. def sum[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  155. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  156. def tail: SortedMultiDict[K, V]
    Definition Classes
    IterableOps
  157. def tails: Iterator[SortedMultiDict[K, V]]
    Definition Classes
    IterableOps
  158. def take(n: Int): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  159. def takeRight(n: Int): SortedMultiDict[K, V]
    Definition Classes
    IterableOps
  160. def takeWhile(p: ((K, V)) => Boolean): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  161. def tapEach[U](f: ((K, V)) => U): SortedMultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  162. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOnceOps
  163. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  164. final def toBuffer[B >: (K, V)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  165. def toIndexedSeq: immutable.IndexedSeq[(K, V)]
    Definition Classes
    IterableOnceOps
  166. def toList: immutable.List[(K, V)]
    Definition Classes
    IterableOnceOps
  167. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
    Definition Classes
    IterableOnceOps
  168. def toSeq: immutable.Seq[(K, V)]
    Definition Classes
    IterableOnceOps
  169. def toSet[B >: (K, V)]: immutable.Set[B]
    Definition Classes
    IterableOnceOps
  170. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  171. def toVector: immutable.Vector[(K, V)]
    Definition Classes
    IterableOnceOps
  172. def transpose[B](implicit asIterable: ((K, V)) => collection.Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  173. def unsorted: collection.MultiDict[K, V]

    this sorted multidict upcasted to an unsorted multidict

    this sorted multidict upcasted to an unsorted multidict

    Definition Classes
    SortedMultiDictSortedMultiDictOps
  174. def unzip[A1, A2](implicit asPair: ((K, V)) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  175. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  176. def values: collection.Iterable[V]

    returns

    all the values contained in this multidict

    Definition Classes
    MultiDictOps
  177. def view: View[(K, V)]
    Definition Classes
    IterableOps
  178. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  179. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  180. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  181. def withFilter(p: ((K, V)) => Boolean): SortedMultiDictOps.WithFilter[K, V, Iterable, collection.MultiDict, SortedMultiDict]
    Definition Classes
    SortedMultiDictSortedMultiDictMultiDict → IterableOps
  182. def zip[B](that: IterableOnce[B]): Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  183. def zipAll[A1 >: (K, V), B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  184. def zipWithIndex: Iterable[((K, V), Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: (K, V)](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def +=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): SortedMultiDict.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  3. def -=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): SortedMultiDict.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.3) Use --= aka subtractAll instead of varargs -=; infix operations with an operand of multiple args will be deprecated

  4. def /:[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  5. final def /:[B](z: B)(op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  6. def :\[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  7. final def :\[B](z: B)(op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  8. def aggregate[B](z: => B)(seqop: (B, (K, V)) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  9. def collectFirst[B](f: PartialFunction[(K, V), B]): Option[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  10. def companion: IterableFactory[[_]Iterable[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  11. def compare(k0: K, k1: K): Int
    Definition Classes
    SortedOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use ordering.compare instead

  12. def copyToBuffer(dest: Buffer[(K, V)]): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  13. final def copyToBuffer[B >: (K, V)](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  14. def count(f: ((K, V)) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  15. def exists(f: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  16. def filter(f: ((K, V)) => Boolean): Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  17. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  18. def flatMap[B](f: ((K, V)) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  19. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  20. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  21. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  22. def forall(f: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  23. def foreach[U](f: ((K, V)) => U): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toStringFormat[SortedMultiDict[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  25. final def from(from: K): SortedMultiDict[K, V]
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeFrom

  26. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  27. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  28. def map[B](f: ((K, V)) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  29. def max(implicit ord: math.Ordering[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  30. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  31. def min(implicit ord: math.Ordering[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  32. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  33. def mkString: String
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  34. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  35. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  36. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  37. def product(implicit num: math.Numeric[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  38. def reduce(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  39. def reduceLeft(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  40. def reduceLeftOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  41. def reduceOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  42. def reduceRight(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  43. def reduceRightOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  44. final def repr: SortedMultiDict[K, V]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  45. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  46. def seq: SortedMultiDict.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  47. def size: Int
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  48. def sum(implicit num: math.Numeric[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  49. def to[C1](factory: Factory[(K, V), C1]): C1
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  50. final def to(to: K): SortedMultiDict[K, V]
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeTo

  51. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  52. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  53. def toIndexedSeq: collection.IndexedSeq[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  54. final def toIterable: collection.Iterable[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  55. final def toIterable: SortedMultiDict.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  56. def toIterator: Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  58. def toList: immutable.List[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  59. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  60. def toSeq: immutable.Seq[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  61. def toSet[B >: A]: immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  62. def toStream: immutable.Stream[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  63. final def toStream: immutable.Stream[(K, V)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  64. final def toTraversable: collection.Traversable[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  65. final def toTraversable: collection.Traversable[(K, V)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  66. def toVector: immutable.Vector[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  67. final def until(until: K): SortedMultiDict[K, V]
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeUntil

  68. def view(from: Int, until: Int): View[(K, V)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  69. def withFilter(f: ((K, V)) => Boolean): Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.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:
    (sortedMultiDict: IterableOnceExtensionMethods[(K, V)]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  70. def [B](y: B): (SortedMultiDict[K, V], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiDict[K, V] toArrowAssoc[SortedMultiDict[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Shrinkable[(K, V)]

Inherited from Growable[(K, V)]

Inherited from Clearable

Inherited from collection.SortedMultiDict[K, V]

Inherited from SortedMultiDictOps[K, V, [X, Y]SortedMultiDict[X, Y], SortedMultiDict[K, V]]

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

Inherited from collection.MultiDict[K, V]

Inherited from Equals

Inherited from Iterable[(K, V)]

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

Inherited from IterableFactoryDefaults[(K, V), [x]Iterable[x]]

Inherited from IterableOps[(K, V), [_]Iterable[_], SortedMultiDict[K, V]]

Inherited from IterableOnceOps[(K, V), [_]Iterable[_], SortedMultiDict[K, V]]

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion StringFormat fromSortedMultiDict[K, V] to StringFormat[SortedMultiDict[K, V]]

Inherited by implicit conversion Ensuring fromSortedMultiDict[K, V] to Ensuring[SortedMultiDict[K, V]]

Inherited by implicit conversion ArrowAssoc fromSortedMultiDict[K, V] to ArrowAssoc[SortedMultiDict[K, V]]

Ungrouped