Packages

class MultiDict[K, V] extends collection.MultiDict[K, V] with Iterable[(K, V)] with MultiDictOps[K, V, MultiDict, MultiDict[K, V]] with IterableOps[(K, V), Iterable, MultiDict[K, V]]

An immutable multidict

K

the type of keys

V

the type of values

Linear Supertypes
Iterable[(K, V)], collection.MultiDict[K, V], Equals, MultiDictOps[K, V, [X, Y]MultiDict[X, Y], MultiDict[K, V]], collection.Iterable[(K, V)], IterableFactoryDefaults[(K, V), [x]Iterable[x]], IterableOps[(K, V), [_]Iterable[_], MultiDict[K, V]], IterableOnceOps[(K, V), [_]Iterable[_], MultiDict[K, V]], IterableOnce[(K, V)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MultiDict
  2. Iterable
  3. MultiDict
  4. Equals
  5. MultiDictOps
  6. Iterable
  7. IterableFactoryDefaults
  8. IterableOps
  9. IterableOnceOps
  10. IterableOnce
  11. AnyRef
  12. 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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def +(kv: (K, V)): MultiDict[K, V]

    Alias for add

    Alias for add

    Annotations
    @inline()
  4. final def ++[B >: (K, V)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def -(kv: (K, V)): MultiDict[K, V]

    Alias for remove

    Alias for remove

    Annotations
    @inline()
  6. final def -*(key: K): MultiDict[K, V]

    Alias for removeKey

    Alias for removeKey

    Annotations
    @inline()
  7. def ->[B](y: B): (MultiDict[K, V], B)
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toArrowAssoc[MultiDict[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def add(key: K, value: V): MultiDict[K, V]

    returns

    a new multidict that contains all the entries of this multidict and the entry defined by the given key and value

  10. def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    MultiDictOps → IterableOnceOps
  11. final def addString(b: mutable.StringBuilder): mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  12. final def addString(b: mutable.StringBuilder, sep: String): mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def canEqual(that: Any): Boolean
    Definition Classes
    MultiDict → Equals
  15. def className: String
    Attributes
    protected[this]
    Definition Classes
    MultiDict → Iterable
  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  17. final def coll: MultiDict.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  18. 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
  19. def collect[B](pf: PartialFunction[(K, V), B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  20. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOnceOps
  21. def collectSets[L, W](pf: PartialFunction[(K, collection.Set[V]), (L, collection.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
  22. def concat(that: IterableOnce[(K, V)]): MultiDict[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
  23. def concat[B >: (K, V)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  24. def concatSets(that: collection.Iterable[(K, collection.Set[V])]): MultiDict[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
  25. 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
  26. 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
  27. 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
  28. def copyToArray[B >: (K, V)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  29. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  30. def copyToArray[B >: (K, V)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  31. def corresponds[B](that: IterableOnce[B])(p: ((K, V), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  32. def count(p: ((K, V)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  33. def drop(n: Int): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def dropRight(n: Int): MultiDict[K, V]
    Definition Classes
    IterableOps
  35. def dropWhile(p: ((K, V)) => Boolean): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def empty: MultiDict[K, V]
    Definition Classes
    MultiDictMultiDict → IterableFactoryDefaults → IterableOps
  37. def ensuring(cond: (MultiDict[K, V]) => Boolean, msg: => Any): MultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toEnsuring[MultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: (MultiDict[K, V]) => Boolean): MultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toEnsuring[MultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. def ensuring(cond: Boolean, msg: => Any): MultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toEnsuring[MultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. def ensuring(cond: Boolean): MultiDict[K, V]
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toEnsuring[MultiDict[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. 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
  42. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. def equals(o: Any): Boolean
    Definition Classes
    MultiDict → Equals → AnyRef → Any
  44. def exists(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  45. def filter(pred: ((K, V)) => Boolean): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  46. def filterNot(pred: ((K, V)) => Boolean): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  47. def filterSets(p: ((K, collection.Set[V])) => Boolean): MultiDict[K, V]

    returns

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

    Definition Classes
    MultiDictOps
  48. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  49. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  50. 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
  51. def flatMap[B](f: ((K, V)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  52. def flatMapSets[L, W](f: ((K, collection.Set[V])) => IterableOnce[(L, collection.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
  53. def flatten[B](implicit asIterable: ((K, V)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  54. def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  55. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  56. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  57. def forall(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  58. def foreach[U](f: ((K, V)) => U): Unit
    Definition Classes
    IterableOnceOps
  59. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toStringFormat[MultiDict[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  60. def fromSets[L, W](it: collection.Iterable[(L, collection.Set[W])]): MultiDict[L, W]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  61. def fromSpecific(coll: IterableOnce[(K, V)]): MultiDict[K, V]
    Attributes
    protected
    Definition Classes
    MultiDictMultiDict → IterableFactoryDefaults → IterableOps
  62. def fromSpecificSets(it: collection.Iterable[(K, collection.Set[V])]): MultiDict[K, V]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  63. 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
  64. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  65. def groupBy[K](f: ((K, V)) => K): Map[K, MultiDict[K, V]]
    Definition Classes
    IterableOps
  66. def groupMap[K, B](key: ((K, V)) => K)(f: ((K, V)) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  67. def groupMapReduce[K, B](key: ((K, V)) => K)(f: ((K, V)) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  68. def grouped(size: Int): Iterator[MultiDict[K, V]]
    Definition Classes
    IterableOps
  69. def hashCode(): Int
    Definition Classes
    MultiDict → AnyRef → Any
  70. def head: (K, V)
    Definition Classes
    IterableOps
  71. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  72. def init: MultiDict[K, V]
    Definition Classes
    IterableOps
  73. def inits: Iterator[MultiDict[K, V]]
    Definition Classes
    IterableOps
  74. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  75. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  76. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  77. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  78. def iterator: Iterator[(K, V)]
    Definition Classes
    MultiDictOps → IterableOnce
  79. def keySet: collection.Set[K]

    returns

    the set of keys

    Definition Classes
    MultiDictOps
  80. def knownSize: Int
    Definition Classes
    IterableOnce
  81. def last: (K, V)
    Definition Classes
    IterableOps
  82. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  83. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, MultiDict.this.type]
    Definition Classes
    Iterable
  84. 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
  85. def map[B](f: ((K, V)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  86. def mapSets[L, W](f: ((K, collection.Set[V])) => (L, collection.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
  87. def max[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  88. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  89. def maxByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  90. def maxOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  91. def min[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  92. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  93. def minByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  94. def minOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  95. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  96. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  97. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  98. def multiDictFactory: MapFactory[MultiDict]
    Definition Classes
    MultiDictMultiDictMultiDictOps
  99. def multiDictFromIterable[L, W](it: collection.Iterable[(L, W)]): MultiDict[L, W]
    Attributes
    protected
    Definition Classes
    MultiDictOps
  100. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  101. def newSpecificBuilder: Builder[(K, V), MultiDict[K, V]]
    Attributes
    protected
    Definition Classes
    MultiDictMultiDict → IterableFactoryDefaults → IterableOps
  102. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  103. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  104. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  105. def partition(p: ((K, V)) => Boolean): (MultiDict[K, V], MultiDict[K, V])
    Definition Classes
    IterableOps
  106. def partitionMap[A1, A2](f: ((K, V)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  107. def product[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  108. def reduce[B >: (K, V)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  109. def reduceLeft[B >: (K, V)](op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  110. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  111. def reduceOption[B >: (K, V)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  112. def reduceRight[B >: (K, V)](op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  113. def reduceRightOption[B >: (K, V)](op: ((K, V), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  114. def remove(key: K, value: V): MultiDict[K, V]

    returns

    a new multidict that contains all the entries of this multidict excepted the entry defined by the given key and value

  115. def removeKey(key: K): MultiDict[K, V]

    returns

    a new multidict that contains all the entries of this multidict excepted those associated with the given key

  116. def reversed: collection.Iterable[(K, V)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  117. def scan[B >: (K, V)](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  118. def scanLeft[B](z: B)(op: (B, (K, V)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  119. def scanRight[B](z: B)(op: ((K, V), B) => B): Iterable[B]
    Definition Classes
    IterableOps
  120. def sets: Map[K, Set[V]]

    returns

    All the elements contained in this multidict, grouped by key

    Definition Classes
    MultiDictMultiDictOps
  121. def size: Int
    Definition Classes
    IterableOnceOps
  122. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  123. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  124. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  125. def slice(from: Int, until: Int): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  126. def sliding(size: Int, step: Int): Iterator[MultiDict[K, V]]
    Definition Classes
    IterableOps
  127. def sliding(size: Int): Iterator[MultiDict[K, V]]
    Definition Classes
    IterableOps
  128. def span(p: ((K, V)) => Boolean): (MultiDict[K, V], MultiDict[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  129. def splitAt(n: Int): (MultiDict[K, V], MultiDict[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  130. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, V), S]): S
    Definition Classes
    IterableOnce
  131. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding("Override className instead", "2.13.0")
  132. def sum[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  133. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  134. def tail: MultiDict[K, V]
    Definition Classes
    IterableOps
  135. def tails: Iterator[MultiDict[K, V]]
    Definition Classes
    IterableOps
  136. def take(n: Int): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  137. def takeRight(n: Int): MultiDict[K, V]
    Definition Classes
    IterableOps
  138. def takeWhile(p: ((K, V)) => Boolean): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def tapEach[U](f: ((K, V)) => U): MultiDict[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  140. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOnceOps
  141. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  142. final def toBuffer[B >: (K, V)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  143. def toIndexedSeq: IndexedSeq[(K, V)]
    Definition Classes
    IterableOnceOps
  144. final def toIterable: MultiDict.this.type
    Definition Classes
    Iterable → IterableOps
  145. def toList: List[(K, V)]
    Definition Classes
    IterableOnceOps
  146. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  147. def toSeq: Seq[(K, V)]
    Definition Classes
    IterableOnceOps
  148. def toSet[B >: (K, V)]: Set[B]
    Definition Classes
    IterableOnceOps
  149. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  150. def toVector: Vector[(K, V)]
    Definition Classes
    IterableOnceOps
  151. def transpose[B](implicit asIterable: ((K, V)) => collection.Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  152. def unzip[A1, A2](implicit asPair: ((K, V)) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  153. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  154. def values: collection.Iterable[V]

    returns

    all the values contained in this multidict

    Definition Classes
    MultiDictOps
  155. def view: View[(K, V)]
    Definition Classes
    IterableOps
  156. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  157. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  158. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  159. def withFilter(p: ((K, V)) => Boolean): MultiDictOps.WithFilter[K, V, Iterable, MultiDict]
    Definition Classes
    MultiDictMultiDict → IterableOps
  160. def zip[B](that: IterableOnce[B]): Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  161. def zipAll[A1 >: (K, V), B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  162. def zipWithIndex: Iterable[((K, V), Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toany2stringadd[MultiDict[K, V]] performed by method any2stringadd in scala.Predef.
    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:
    (multiDict: any2stringadd[MultiDict[K, V]]).+(other)
    Definition Classes
    any2stringadd

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 MultiDict[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:
    (multiDict: 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 MultiDict[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:
    (multiDict: 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 MultiDict[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:
    (multiDict: 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("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.find instead

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

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

    (Since version 2.13.0) Use .iterator.fold instead

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

  39. final def repr: MultiDict[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

  40. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from MultiDict[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

  41. def seq: MultiDict.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toArray

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

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

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

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

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

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

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

  62. def [B](y: B): (MultiDict[K, V], B)
    Implicit
    This member is added by an implicit conversion from MultiDict[K, V] toArrowAssoc[MultiDict[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 Iterable[(K, V)]

Inherited from collection.MultiDict[K, V]

Inherited from Equals

Inherited from MultiDictOps[K, V, [X, Y]MultiDict[X, Y], MultiDict[K, V]]

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

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

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

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

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion any2stringadd fromMultiDict[K, V] to any2stringadd[MultiDict[K, V]]

Inherited by implicit conversion StringFormat fromMultiDict[K, V] to StringFormat[MultiDict[K, V]]

Inherited by implicit conversion Ensuring fromMultiDict[K, V] to Ensuring[MultiDict[K, V]]

Inherited by implicit conversion ArrowAssoc fromMultiDict[K, V] to ArrowAssoc[MultiDict[K, V]]

Ungrouped