Packages

class MultiMap[K, V] extends collection.MultiMap[K, V] with Iterable[(K, V)] with MultiMapOps[K, V, MultiMap, MultiMap[K, V]] with IterableOps[(K, V), Iterable, MultiMap[K, V]]

An immutable multimap

K

the type of keys

V

the type of values

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

Type Members

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

Value Members

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

    Alias for add

    Alias for add

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

    Alias for remove

    Alias for remove

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

    Alias for removeKey

    Alias for removeKey

    Annotations
    @inline()
  7. def ->[B](y: B): (MultiMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to ArrowAssoc[MultiMap[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): MultiMap[K, V]

    returns

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

  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def canEqual(that: Any): Boolean
    Definition Classes
    MultiMap → Equals
  12. def className: String
    Definition Classes
    IterableOps
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  14. def coll: MultiMap.this.type
    Attributes
    protected[this]
    Definition Classes
    Iterable → IterableOps
  15. def collect[L, W](pf: PartialFunction[(K, V), (L, W)]): MultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    pf

    transformation to apply

    returns

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

    Definition Classes
    MultiMapOps
  16. def collect[B](pf: PartialFunction[(K, V), B]): Iterable[B]
    Definition Classes
    IterableOps
  17. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOps
  18. def collectSets[L, W](pf: PartialFunction[(K, collection.Set[V]), (L, collection.Set[W])]): MultiMap[L, W]

    L

    the new type of keys

    W

    the new type of values

    pf

    the partial function to apply to each set of values

    returns

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

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

    Concatenate the entries given in that iterable to this multimap

    Concatenate the entries given in that iterable to this multimap

    Definition Classes
    MultiMapOps
  20. def concat[B >: (K, V)](suffix: collection.Iterable[B]): Iterable[B]
    Definition Classes
    IterableOps
  21. def concatSets(that: collection.Iterable[(K, collection.Set[V])]): MultiMap[K, V]

    that

    the collection of values to add to this multimap

    returns

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

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

    kv

    the binding to test

    returns

    Whether the binding kv is contained in this multimap or not

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

    key

    the key to test

    returns

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

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

    value

    the value to test

    returns

    Whether at least one key is associated to the given value

    Definition Classes
    MultiMapOps
  25. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): xs.type
    Definition Classes
    IterableOps
  26. def count(p: ((K, V)) ⇒ Boolean): Int
    Definition Classes
    IterableOps
  27. def drop(n: Int): MultiMap[K, V]
    Definition Classes
    IterableOps
  28. def dropRight(n: Int): MultiMap[K, V]
    Definition Classes
    IterableOps
  29. def dropWhile(p: ((K, V)) ⇒ Boolean): MultiMap[K, V]
    Definition Classes
    IterableOps
  30. def ensuring(cond: (MultiMap[K, V]) ⇒ Boolean, msg: ⇒ Any): MultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to Ensuring[MultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: (MultiMap[K, V]) ⇒ Boolean): MultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to Ensuring[MultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: Boolean, msg: ⇒ Any): MultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to Ensuring[MultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: Boolean): MultiMap[K, V]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to Ensuring[MultiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def entryExists(key: K, p: (V) ⇒ Boolean): Boolean

    returns

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

    Definition Classes
    MultiMapOps
  35. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. def equals(o: Any): Boolean
    Definition Classes
    MultiMap → Equals → AnyRef → Any
  37. def exists(p: ((K, V)) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  38. def filter(pred: ((K, V)) ⇒ Boolean): MultiMap[K, V]
    Definition Classes
    IterableOps
  39. def filterNot(pred: ((K, V)) ⇒ Boolean): MultiMap[K, V]
    Definition Classes
    IterableOps
  40. def filterSets(p: ((K, collection.Set[V])) ⇒ Boolean): MultiMap[K, V]

    returns

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

    Definition Classes
    MultiMapOps
  41. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  42. def find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]
    Definition Classes
    IterableOps
  43. def flatMap[L, W](f: ((K, V)) ⇒ IterableOnce[(L, W)]): MultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

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

    Definition Classes
    MultiMapOps
  44. def flatMap[B](f: ((K, V)) ⇒ IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  45. def flatMapSets[L, W](f: ((K, collection.Set[V])) ⇒ IterableOnce[(L, collection.Set[W])]): MultiMap[L, W]

    L

    the new type of keys

    W

    the type of values of the returned multimap

    f

    the function to apply

    returns

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

    Definition Classes
    MultiMapOps
  46. def flatten[B](implicit asIterable: ((K, V)) ⇒ IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  47. def foldLeft[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Definition Classes
    IterableOps
  48. def foldRight[B](z: B)(op: ((K, V), B) ⇒ B): B
    Definition Classes
    IterableOps
  49. def forall(p: ((K, V)) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  50. def foreach[U](f: ((K, V)) ⇒ U): Unit
    Definition Classes
    IterableOps
  51. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to StringFormat[MultiMap[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  52. final def fromIterable[E](it: collection.Iterable[E]): Iterable[E]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  53. def fromSets[L, W](it: collection.Iterable[(L, collection.Set[W])]): MultiMap[L, W]
    Attributes
    protected[this]
    Definition Classes
    MultiMapOps
  54. def fromSpecificIterable(coll: collection.Iterable[(K, V)]): MultiMap[K, V]
    Attributes
    protected[this]
    Definition Classes
    MultiMap → IterableOps
  55. def fromSpecificSets(it: collection.Iterable[(K, collection.Set[V])]): MultiMap[K, V]
    Attributes
    protected[this]
    Definition Classes
    MultiMapOps
  56. def get(key: K): collection.Set[V]

    key

    key to look up

    returns

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

    Definition Classes
    MultiMapOps
  57. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  58. def groupBy[K](f: ((K, V)) ⇒ K): Map[K, MultiMap[K, V]]
    Definition Classes
    IterableOps
  59. def groupMap[K, B](key: ((K, V)) ⇒ K)(f: ((K, V)) ⇒ B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  60. def groupMapReduce[K, B](key: ((K, V)) ⇒ K)(f: ((K, V)) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Definition Classes
    IterableOps
  61. def grouped(size: Int): Iterator[MultiMap[K, V]]
    Definition Classes
    IterableOps
  62. def hashCode(): Int
    Definition Classes
    MultiMap → AnyRef → Any
  63. def head: (K, V)
    Definition Classes
    IterableOps
  64. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  65. def init: MultiMap[K, V]
    Definition Classes
    IterableOps
  66. def isEmpty: Boolean
    Definition Classes
    IterableOps
  67. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  68. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    MultiMap → IterableOps
  69. def iterator(): Iterator[(K, V)]
    Definition Classes
    MultiMapOps → IterableOnce
  70. def keySet: collection.Set[K]

    returns

    the set of keys

    Definition Classes
    MultiMapOps
  71. def knownSize: Int
    Definition Classes
    IterableOps → IterableOnce
  72. def last: (K, V)
    Definition Classes
    IterableOps
  73. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  74. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, Iterable[(K, V)]]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to LazyZipOps[(K, V), Iterable[(K, V)]] performed by method toLazyZipOps in strawman.collection.Iterable.
    Definition Classes
    LazyZipOps
  75. def map[L, W](f: ((K, V)) ⇒ (L, W)): MultiMap[L, W]

    L

    new type of keys

    W

    new type of values

    f

    transformation function

    returns

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

    Definition Classes
    MultiMapOps
  76. def map[B](f: ((K, V)) ⇒ B): Iterable[B]
    Definition Classes
    IterableOps
  77. def mapSets[L, W](f: ((K, collection.Set[V])) ⇒ (L, collection.Set[W])): MultiMap[L, W]

    L

    the new type of keys

    W

    the type of values of the returned multimap

    f

    the function to apply

    returns

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

    Definition Classes
    MultiMapOps
  78. def max[B >: (K, V)](implicit ord: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  79. def maxBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  80. def min[B >: (K, V)](implicit ord: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  81. def minBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
    Definition Classes
    IterableOps
  82. def mkString: String
    Definition Classes
    IterableOps
  83. def mkString(sep: String): String
    Definition Classes
    IterableOps
  84. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOps
  85. def multiMapFactory: MapFactory[MultiMap]
    Definition Classes
    MultiMapMultiMapOps
  86. def multiMapFromIterable[L, W](it: collection.Iterable[(L, W)]): MultiMap[L, W]
    Attributes
    protected[this]
    Definition Classes
    MultiMapOps
  87. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  88. def newSpecificBuilder(): Builder[(K, V), MultiMap[K, V]]
    Attributes
    protected[this]
    Definition Classes
    MultiMap → IterableOps
  89. def nonEmpty: Boolean
    Definition Classes
    IterableOps
  90. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  91. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  92. def partition(p: ((K, V)) ⇒ Boolean): (MultiMap[K, V], MultiMap[K, V])
    Definition Classes
    IterableOps
  93. def product[B >: (K, V)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  94. def reduce[B >: (K, V)](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOps
  95. def reduceLeft[B >: (K, V)](op: (B, (K, V)) ⇒ B): B
    Definition Classes
    IterableOps
  96. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  97. def reduceOption[B >: (K, V)](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  98. def reduceRight[B >: (K, V)](op: ((K, V), B) ⇒ B): B
    Definition Classes
    IterableOps
  99. def reduceRightOption[B >: (K, V)](op: ((K, V), B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  100. def remove(key: K, value: V): MultiMap[K, V]

    returns

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

  101. def removeKey(key: K): MultiMap[K, V]

    returns

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

  102. def reversed: collection.Iterable[(K, V)]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  103. def scan[B >: (K, V)](z: B)(op: (B, B) ⇒ B): Iterable[B]
    Definition Classes
    IterableOps
  104. def scanLeft[B](z: B)(op: (B, (K, V)) ⇒ B): Iterable[B]
    Definition Classes
    IterableOps
  105. def scanRight[B](z: B)(op: ((K, V), B) ⇒ B): Iterable[B]
    Definition Classes
    IterableOps
  106. def sets: Map[K, Set[V]]

    returns

    All the elements contained in this multimap, grouped by key

    Definition Classes
    MultiMapMultiMapOps
  107. def size: Int
    Definition Classes
    IterableOps
  108. def slice(from: Int, until: Int): MultiMap[K, V]
    Definition Classes
    IterableOps
  109. def sliding(size: Int, step: Int): Iterator[MultiMap[K, V]]
    Definition Classes
    IterableOps
  110. def sliding(size: Int): Iterator[MultiMap[K, V]]
    Definition Classes
    IterableOps
  111. def span(p: ((K, V)) ⇒ Boolean): (MultiMap[K, V], MultiMap[K, V])
    Definition Classes
    IterableOps
  112. def splitAt(n: Int): (MultiMap[K, V], MultiMap[K, V])
    Definition Classes
    IterableOps
  113. def sum[B >: (K, V)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  114. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  115. def tail: MultiMap[K, V]
    Definition Classes
    IterableOps
  116. def take(n: Int): MultiMap[K, V]
    Definition Classes
    IterableOps
  117. def takeRight(n: Int): MultiMap[K, V]
    Definition Classes
    IterableOps
  118. def takeWhile(p: ((K, V)) ⇒ Boolean): MultiMap[K, V]
    Definition Classes
    IterableOps
  119. val this: Iterable[(K, V)]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to LazyZipOps[(K, V), Iterable[(K, V)]] performed by method toLazyZipOps in strawman.collection.Iterable.
    Definition Classes
    LazyZipOps
  120. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOps
  121. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOps
  122. def toIndexedSeq: IndexedSeq[(K, V)]
    Definition Classes
    IterableOps
  123. final def toIterable: MultiMap.this.type
    Definition Classes
    Iterable → IterableOps
  124. def toList: List[(K, V)]
    Definition Classes
    IterableOps
  125. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): Map[K, V]
    Definition Classes
    IterableOps
  126. def toSeq: Seq[(K, V)]
    Definition Classes
    IterableOps
  127. def toSet[B >: (K, V)]: Set[B]
    Definition Classes
    IterableOps
  128. def toString(): String
    Definition Classes
    IterableOps → Any
  129. def toVector: Vector[(K, V)]
    Definition Classes
    IterableOps
  130. def transpose[B](implicit asIterable: ((K, V)) ⇒ collection.Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  131. def unzip[A1, A2](implicit asPair: <:<[(K, V), (A1, A2)]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  132. def values: collection.Iterable[V]

    returns

    all the values contained in this multimap

    Definition Classes
    MultiMapOps
  133. def view: View[(K, V)]
    Definition Classes
    IterableOps
  134. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  135. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  136. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  137. def withFilter(p: ((K, V)) ⇒ Boolean): MultiMapWithFilter
    Definition Classes
    MultiMapOps → IterableOps
  138. def zip[B](that: collection.Iterable[B]): Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  139. def zipWithIndex: Iterable[((K, V), Int)]
    Definition Classes
    IterableOps
  140. def [B](y: B): (MultiMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to ArrowAssoc[MultiMap[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to any2stringadd[MultiMap[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:
    (multiMap: any2stringadd[MultiMap[K, V]]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use className instead of stringPrefix

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

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

  12. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from MultiMap[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

Inherited from Iterable[(K, V)]

Inherited from collection.MultiMap[K, V]

Inherited from Equals

Inherited from MultiMapOps[K, V, MultiMap, MultiMap[K, V]]

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

Inherited from Traversable[(K, V)]

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

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion toLazyZipOps from MultiMap[K, V] to LazyZipOps[(K, V), Iterable[(K, V)]]

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

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

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

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

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

Ungrouped