Packages

trait SortedMultiDictOps[K, V, +CC[X, Y] <: MultiDict[X, Y], +C <: MultiDict[K, V]] extends MultiDictOps[K, V, MultiDict, C] with SortedOps[K, C]

Linear Supertypes
SortedOps[K, C], MultiDictOps[K, V, MultiDict, C], IterableOps[(K, V), Iterable, C], IterableOnceOps[(K, V), Iterable, C], IterableOnce[(K, V)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedMultiDictOps
  2. SortedOps
  3. MultiDictOps
  4. IterableOps
  5. IterableOnceOps
  6. IterableOnce
  7. AnyRef
  8. 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. Protected

Abstract Value Members

  1. abstract def coll: C
    Attributes
    protected
    Definition Classes
    IterableOps
  2. abstract def fromSpecific(coll: IterableOnce[(K, V)]): C
    Attributes
    protected
    Definition Classes
    IterableOps
  3. abstract def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    IterableOps
  4. abstract def multiDictFactory: MapFactory[MultiDict]
    Definition Classes
    MultiDictOps
  5. abstract def newSpecificBuilder: Builder[(K, V), C]
    Attributes
    protected
    Definition Classes
    IterableOps
  6. abstract def ordering: Ordering[K]
    Definition Classes
    SortedOps
  7. abstract def rangeImpl(from: Option[K], until: Option[K]): C
    Definition Classes
    SortedOps
  8. abstract def sets: SortedMap[K, Set[V]]

    returns

    All the elements contained in this multidict, grouped by key

    Definition Classes
    SortedMultiDictOpsMultiDictOps
  9. abstract def sortedMultiDictFactory: SortedMapFactory[CC]
  10. abstract def unsorted: MultiDict[K, V]

    this sorted multidict upcasted to an unsorted multidict

  11. abstract def toIterable: Iterable[(K, V)]
    Definition Classes
    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

Concrete 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 SortedMultiDictOps[K, V, CC, C] toany2stringadd[SortedMultiDictOps[K, V, CC, C]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: (K, V)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (SortedMultiDictOps[K, V, CC, C], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toArrowAssoc[SortedMultiDictOps[K, V, CC, C]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def addString(sb: StringBuilder, start: String, sep: String, end: String): sb.type
    Definition Classes
    MultiDictOps → IterableOnceOps
  8. final def addString(b: mutable.StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. final def addString(b: mutable.StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def collect[L, W](pf: PartialFunction[(K, V), (L, W)])(implicit arg0: Ordering[L]): CC[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

  13. def collect[L, W](pf: PartialFunction[(K, V), (L, W)]): 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
  14. def collect[B](pf: PartialFunction[(K, V), B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  15. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOnceOps
  16. def collectSets[L, W](pf: PartialFunction[(K, Set[V]), (L, Set[W])])(implicit arg0: Ordering[L]): CC[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

  17. def collectSets[L, W](pf: PartialFunction[(K, Set[V]), (L, Set[W])]): 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
  18. def concat(that: IterableOnce[(K, V)]): C

    Concatenate the entries given in that iterable to this multidict

    Concatenate the entries given in that iterable to this multidict

    Definition Classes
    MultiDictOps
  19. def concat[B >: (K, V)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  20. def concatSets(that: Iterable[(K, Set[V])]): C

    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
  21. 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
  22. 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
  23. 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
  24. def copyToArray[B >: (K, V)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  25. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  26. def copyToArray[B >: (K, V)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  27. def corresponds[B](that: IterableOnce[B])(p: ((K, V), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  28. def count(p: ((K, V)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  29. def drop(n: Int): C
    Definition Classes
    IterableOps → IterableOnceOps
  30. def dropRight(n: Int): C
    Definition Classes
    IterableOps
  31. def dropWhile(p: ((K, V)) => Boolean): C
    Definition Classes
    IterableOps → IterableOnceOps
  32. def empty: C
    Definition Classes
    IterableOps
  33. def ensuring(cond: (SortedMultiDictOps[K, V, CC, C]) => Boolean, msg: => Any): SortedMultiDictOps[K, V, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toEnsuring[SortedMultiDictOps[K, V, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: (SortedMultiDictOps[K, V, CC, C]) => Boolean): SortedMultiDictOps[K, V, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toEnsuring[SortedMultiDictOps[K, V, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean, msg: => Any): SortedMultiDictOps[K, V, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toEnsuring[SortedMultiDictOps[K, V, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: Boolean): SortedMultiDictOps[K, V, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toEnsuring[SortedMultiDictOps[K, V, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. 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
  38. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  40. def exists(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  41. def filter(pred: ((K, V)) => Boolean): C
    Definition Classes
    IterableOps → IterableOnceOps
  42. def filterNot(pred: ((K, V)) => Boolean): C
    Definition Classes
    IterableOps → IterableOnceOps
  43. def filterSets(p: ((K, Set[V])) => Boolean): C

    returns

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

    Definition Classes
    MultiDictOps
  44. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  45. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  46. def firstKey: K
    Definition Classes
    SortedMultiDictOps → SortedOps
  47. def flatMap[L, W](f: ((K, V)) => IterableOnce[(L, W)])(implicit arg0: Ordering[L]): CC[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

  48. def flatMap[L, W](f: ((K, V)) => IterableOnce[(L, W)]): 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
  49. def flatMap[B](f: ((K, V)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def flatMapSets[L, W](f: ((K, Set[V])) => IterableOnce[(L, Set[W])])(implicit arg0: Ordering[L]): CC[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

  51. def flatMapSets[L, W](f: ((K, Set[V])) => IterableOnce[(L, Set[W])]): 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
  52. def flatten[B](implicit asIterable: ((K, V)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  54. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  55. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  56. def forall(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  57. def foreach[U](f: ((K, V)) => U): Unit
    Definition Classes
    IterableOnceOps
  58. def fromSets[L, W](it: Iterable[(L, Set[W])]): MultiDict[L, W]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  59. def fromSpecificSets(it: Iterable[(K, Set[V])]): C
    Attributes
    protected
    Definition Classes
    MultiDictOps
  60. def get(key: K): 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
  61. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  62. def groupBy[K](f: ((K, V)) => K): immutable.Map[K, C]
    Definition Classes
    IterableOps
  63. def groupMap[K, B](key: ((K, V)) => K)(f: ((K, V)) => B): immutable.Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  64. def groupMapReduce[K, B](key: ((K, V)) => K)(f: ((K, V)) => B)(reduce: (B, B) => B): immutable.Map[K, B]
    Definition Classes
    IterableOps
  65. def grouped(size: Int): Iterator[C]
    Definition Classes
    IterableOps
  66. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  67. def head: (K, V)
    Definition Classes
    IterableOps
  68. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  69. def init: C
    Definition Classes
    IterableOps
  70. def inits: Iterator[C]
    Definition Classes
    IterableOps
  71. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  72. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  73. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  74. def iterator: Iterator[(K, V)]
    Definition Classes
    MultiDictOps → IterableOnce
  75. def iteratorFrom(start: K): Iterator[(K, V)]
  76. def keySet: Set[K]

    returns

    the set of keys

    Definition Classes
    MultiDictOps
  77. def knownSize: Int
    Definition Classes
    IterableOnce
  78. def last: (K, V)
    Definition Classes
    IterableOps
  79. def lastKey: K
    Definition Classes
    SortedMultiDictOps → SortedOps
  80. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  81. def map[L, W](f: ((K, V)) => (L, W))(implicit arg0: Ordering[L]): CC[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

  82. def map[L, W](f: ((K, V)) => (L, W)): 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
  83. def map[B](f: ((K, V)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  84. def mapSets[L, W](f: ((K, Set[V])) => (L, Set[W]))(implicit arg0: Ordering[L]): CC[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.

  85. def mapSets[L, W](f: ((K, Set[V])) => (L, Set[W])): 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
  86. def max[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  87. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  88. def maxByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  89. def maxOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  90. def min[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  91. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  92. def minByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  93. def minOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  94. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  95. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  96. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  97. def multiDictFromIterable[L, W](it: Iterable[(L, W)]): MultiDict[L, W]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  98. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  99. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  100. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  101. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  102. def partition(p: ((K, V)) => Boolean): (C, C)
    Definition Classes
    IterableOps
  103. def partitionMap[A1, A2](f: ((K, V)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  104. def product[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  105. def range(from: K, until: K): C
    Definition Classes
    SortedOps
  106. def rangeFrom(from: K): C
    Definition Classes
    SortedOps
  107. def rangeTo(to: K): C
    Definition Classes
    SortedMultiDictOps → SortedOps
  108. def rangeUntil(until: K): C
    Definition Classes
    SortedOps
  109. def reduce[B >: (K, V)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  110. def reduceLeft[B >: (K, V)](op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  111. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  112. def reduceOption[B >: (K, V)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  113. def reduceRight[B >: (K, V)](op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  114. def reduceRightOption[B >: (K, V)](op: ((K, V), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  115. def reversed: Iterable[(K, V)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  116. def scan[B >: (K, V)](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  117. def scanLeft[B](z: B)(op: (B, (K, V)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  118. def scanRight[B](z: B)(op: ((K, V), B) => B): Iterable[B]
    Definition Classes
    IterableOps
  119. def size: Int
    Definition Classes
    IterableOnceOps
  120. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  121. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  122. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  123. def slice(from: Int, until: Int): C
    Definition Classes
    IterableOps → IterableOnceOps
  124. def sliding(size: Int, step: Int): Iterator[C]
    Definition Classes
    IterableOps
  125. def sliding(size: Int): Iterator[C]
    Definition Classes
    IterableOps
  126. def sortedFromIterable[L, W](it: Iterable[(L, W)])(implicit arg0: Ordering[L]): CC[L, W]
    Attributes
    protected[this]
  127. def sortedFromSets[L, W](it: Iterable[(L, Set[W])])(implicit arg0: Ordering[L]): CC[L, W]
    Attributes
    protected[this]
  128. def span(p: ((K, V)) => Boolean): (C, C)
    Definition Classes
    IterableOps → IterableOnceOps
  129. def splitAt(n: Int): (C, C)
    Definition Classes
    IterableOps → IterableOnceOps
  130. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, V), S]): S
    Definition Classes
    IterableOnce
  131. def sum[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  132. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  133. def tail: C
    Definition Classes
    IterableOps
  134. def tails: Iterator[C]
    Definition Classes
    IterableOps
  135. def take(n: Int): C
    Definition Classes
    IterableOps → IterableOnceOps
  136. def takeRight(n: Int): C
    Definition Classes
    IterableOps
  137. def takeWhile(p: ((K, V)) => Boolean): C
    Definition Classes
    IterableOps → IterableOnceOps
  138. def tapEach[U](f: ((K, V)) => U): C
    Definition Classes
    IterableOps → IterableOnceOps
  139. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOnceOps
  140. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  141. final def toBuffer[B >: (K, V)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  142. def toIndexedSeq: immutable.IndexedSeq[(K, V)]
    Definition Classes
    IterableOnceOps
  143. def toList: immutable.List[(K, V)]
    Definition Classes
    IterableOnceOps
  144. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
    Definition Classes
    IterableOnceOps
  145. def toSeq: immutable.Seq[(K, V)]
    Definition Classes
    IterableOnceOps
  146. def toSet[B >: (K, V)]: immutable.Set[B]
    Definition Classes
    IterableOnceOps
  147. def toString(): String
    Definition Classes
    AnyRef → Any
  148. def toVector: immutable.Vector[(K, V)]
    Definition Classes
    IterableOnceOps
  149. def transpose[B](implicit asIterable: ((K, V)) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  150. def unzip[A1, A2](implicit asPair: ((K, V)) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  151. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  152. def values: Iterable[V]

    returns

    all the values contained in this multidict

    Definition Classes
    MultiDictOps
  153. def view: View[(K, V)]
    Definition Classes
    IterableOps
  154. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  155. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  156. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  157. def withFilter(p: ((K, V)) => Boolean): WithFilter[(K, V), Iterable]
    Definition Classes
    IterableOps
  158. def zip[B](that: IterableOnce[B]): Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  159. def zipAll[A1 >: (K, V), B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  160. 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. def /:[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  3. 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 /:

  4. def :\[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

  6. 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) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  7. def collectFirst[B](f: PartialFunction[(K, V), B]): Option[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use iterableFactory instead

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

    (Since version 2.13.0) Use ordering.compare instead

  10. def copyToBuffer(dest: Buffer[(K, V)]): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

  12. def count(f: ((K, V)) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  13. def exists(f: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  14. def filter(f: ((K, V)) => Boolean): Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  15. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  16. def flatMap[B](f: ((K, V)) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: 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

  17. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  18. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  19. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  20. def forall(f: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  21. def foreach[U](f: ((K, V)) => U): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toStringFormat[SortedMultiDictOps[K, V, CC, C]] 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.

  23. final def from(from: K): C
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeFrom

  24. 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)

  25. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  26. def map[B](f: ((K, V)) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: 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

  27. def max(implicit ord: math.Ordering[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  28. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  29. def min(implicit ord: math.Ordering[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  30. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  31. def mkString: String
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  33. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  34. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  35. def product(implicit num: math.Numeric[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  36. def reduce(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  37. def reduceLeft(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  38. def reduceLeftOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  39. def reduceOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  40. def reduceRight(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  41. def reduceRightOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  42. final def repr: C
    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

  43. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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

  44. def size: Int
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  45. def sum(implicit num: math.Numeric[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  46. def to[C1](factory: Factory[(K, V), C1]): C1
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  47. final def to(to: K): C
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeTo

  48. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  49. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  50. def toIndexedSeq: IndexedSeq[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  51. final def toIterable: Iterable[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  52. def toIterator: Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  54. def toList: immutable.List[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  55. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  56. def toSeq: immutable.Seq[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  57. def toSet[B >: A]: immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  58. def toStream: immutable.Stream[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

  60. final def toTraversable: Traversable[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  61. final def toTraversable: 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

  62. def toVector: immutable.Vector[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  63. final def until(until: K): C
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeUntil

  64. 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)

  65. def withFilter(f: ((K, V)) => Boolean): Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] 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:
    (sortedMultiDictOps: IterableOnceExtensionMethods[(K, V)]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  66. def [B](y: B): (SortedMultiDictOps[K, V, CC, C], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiDictOps[K, V, CC, C] toArrowAssoc[SortedMultiDictOps[K, V, CC, C]] 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 SortedOps[K, C]

Inherited from MultiDictOps[K, V, MultiDict, C]

Inherited from IterableOps[(K, V), Iterable, C]

Inherited from IterableOnceOps[(K, V), Iterable, C]

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromSortedMultiDictOps[K, V, CC, C] to IterableOnceExtensionMethods[(K, V)]

Inherited by implicit conversion any2stringadd fromSortedMultiDictOps[K, V, CC, C] to any2stringadd[SortedMultiDictOps[K, V, CC, C]]

Inherited by implicit conversion StringFormat fromSortedMultiDictOps[K, V, CC, C] to StringFormat[SortedMultiDictOps[K, V, CC, C]]

Inherited by implicit conversion Ensuring fromSortedMultiDictOps[K, V, CC, C] to Ensuring[SortedMultiDictOps[K, V, CC, C]]

Inherited by implicit conversion ArrowAssoc fromSortedMultiDictOps[K, V, CC, C] to ArrowAssoc[SortedMultiDictOps[K, V, CC, C]]

Ungrouped