Packages

final class WrappedMap[K, V] extends AbstractMap[K, V] with MapOps[K, V, collection.mutable.Map, WrappedMap[K, V]]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedMap
  2. AbstractMap
  3. Map
  4. MapOps
  5. Shrinkable
  6. Builder
  7. Growable
  8. Clearable
  9. Cloneable
  10. Cloneable
  11. Iterable
  12. AbstractMap
  13. Map
  14. Equals
  15. MapFactoryDefaults
  16. MapOps
  17. PartialFunction
  18. Function1
  19. AbstractIterable
  20. Iterable
  21. IterableFactoryDefaults
  22. IterableOps
  23. IterableOnceOps
  24. IterableOnce
  25. AnyRef
  26. Any
Implicitly
  1. by UnliftOps
  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. Protected

Instance Constructors

  1. new WrappedMap(underlying: Map[K, V])

Type Members

  1. trait GenKeySet extends AnyRef
    Attributes
    protected
    Definition Classes
    MapOps
  2. class KeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable
    Attributes
    protected
    Definition Classes
    MapOps

Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++[V2 >: V](xs: collection.IterableOnce[(K, V2)]): collection.mutable.Map[K, V2]
    Definition Classes
    MapOps
  4. final def ++[B >: (K, V)](suffix: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ++=(xs: collection.IterableOnce[(K, V)]): WrappedMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  6. final def +=(elem: (K, V)): WrappedMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  7. final def --=(xs: collection.IterableOnce[K]): WrappedMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  8. final def -=(elem: K): WrappedMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  9. def ->[B](y: B): (WrappedMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toArrowAssoc[WrappedMap[K, V]] performed by method ArrowAssoc in scala.Predef.This conversion will take place only if V is a subclass of Option[Nothing] (V <: Option[Nothing]).
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def addAll(xs: collection.IterableOnce[(K, V)]): WrappedMap.this.type
    Definition Classes
    Growable
  12. def addOne(kv: (K, V)): WrappedMap.this.type
    Definition Classes
    WrappedMap → Growable
  13. def addString(sb: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Definition Classes
    MapOps → IterableOnceOps
  14. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  15. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  16. def andThen[C](k: PartialFunction[V, C]): PartialFunction[K, C]
    Definition Classes
    PartialFunction
  17. def andThen[C](k: (V) => C): PartialFunction[K, C]
    Definition Classes
    PartialFunction → Function1
  18. def apply(key: K): V
    Definition Classes
    WrappedMap → MapOps → Function1
  19. def applyOrElse[K1 <: K, V1 >: V](x: K1, default: (K1) => V1): V1
    Definition Classes
    MapOps → PartialFunction
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. def canEqual(that: scala.Any): Boolean
    Definition Classes
    Map → Equals
  22. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  23. def clear(): Unit
    Definition Classes
    MapOps → Builder → Clearable
  24. def clone(): WrappedMap[K, V]
    Definition Classes
    MapOps → Cloneable → AnyRef
  25. final def coll: WrappedMap.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  26. def collect[K2, V2](pf: PartialFunction[(K, V), (K2, V2)]): collection.mutable.Map[K2, V2]
    Definition Classes
    MapOps
  27. def collect[B](pf: PartialFunction[(K, V), B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  28. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOnceOps
  29. def compose[R](k: PartialFunction[R, K]): PartialFunction[R, V]
    Definition Classes
    PartialFunction
  30. def compose[A](g: (A) => K): (A) => V
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  31. def concat[V2 >: V](suffix: collection.IterableOnce[(K, V2)]): collection.mutable.Map[K, V2]
    Definition Classes
    MapOps
  32. def concat[B >: (K, V)](suffix: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
  33. def contains(key: K): Boolean
    Definition Classes
    WrappedMap → MapOps
  34. def copyToArray[B >: (K, V)](xs: scala.Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  35. def copyToArray[B >: (K, V)](xs: scala.Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  36. def copyToArray[B >: (K, V)](xs: scala.Array[B]): Int
    Definition Classes
    IterableOnceOps
  37. def corresponds[B](that: collection.IterableOnce[B])(p: ((K, V), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  38. def count(p: ((K, V)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  39. def default(key: K): V
    Definition Classes
    MapOps
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  40. def drop(n: Int): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  41. def dropRight(n: Int): WrappedMap[K, V]
    Definition Classes
    IterableOps
  42. def dropWhile(p: ((K, V)) => Boolean): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  43. def elementWise: ElementWiseExtractor[K, V]
    Definition Classes
    PartialFunction
  44. def empty: WrappedMap[K, V]
    Definition Classes
    WrappedMap → MapFactoryDefaults → IterableFactoryDefaults → IterableOps
  45. def ensuring(cond: (WrappedMap[K, V]) => Boolean, msg: => scala.Any): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toEnsuring[WrappedMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: (WrappedMap[K, V]) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toEnsuring[WrappedMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. def ensuring(cond: Boolean, msg: => scala.Any): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toEnsuring[WrappedMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  48. def ensuring(cond: Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toEnsuring[WrappedMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  49. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  50. def equals(o: scala.Any): Boolean
    Definition Classes
    Map → Equals → AnyRef → Any
  51. def exists(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  52. def filter(pred: ((K, V)) => Boolean): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def filterInPlace(p: (K, V) => Boolean): WrappedMap.this.type
    Definition Classes
    MapOps
  54. def filterNot(pred: ((K, V)) => Boolean): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  55. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  56. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  57. def flatMap[K2, V2](f: ((K, V)) => collection.IterableOnce[(K2, V2)]): collection.mutable.Map[K2, V2]
    Definition Classes
    MapOps
  58. def flatMap[B](f: ((K, V)) => collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  59. def flatten[B](implicit asIterable: ((K, V)) => collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  60. def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  61. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  62. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  63. def forall(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  64. def foreach[U](f: ((K, V)) => U): Unit
    Definition Classes
    IterableOnceOps
  65. def foreachEntry[U](f: (K, V) => U): Unit
    Definition Classes
    MapOps
  66. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toStringFormat[WrappedMap[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  67. def fromSpecific(coll: collection.IterableOnce[(K, V)]): WrappedMap[K, V]
    Attributes
    protected[this]
    Definition Classes
    WrappedMap → MapFactoryDefaults → IterableFactoryDefaults → IterableOps
  68. def get(key: K): Option[V]
    Definition Classes
    WrappedMap → MapOps
  69. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  70. def getOrElse[V1 >: V](key: K, default: => V1): V1
    Definition Classes
    MapOps
  71. def getOrElseUpdate(key: K, op: => V): V
    Definition Classes
    MapOps
  72. def groupBy[K](f: ((K, V)) => K): collection.immutable.Map[K, WrappedMap[K, V]]
    Definition Classes
    IterableOps
  73. def groupMap[K, B](key: ((K, V)) => K)(f: ((K, V)) => B): collection.immutable.Map[K, collection.mutable.Iterable[B]]
    Definition Classes
    IterableOps
  74. def groupMapReduce[K, B](key: ((K, V)) => K)(f: ((K, V)) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Definition Classes
    IterableOps
  75. def grouped(size: Int): collection.Iterator[WrappedMap[K, V]]
    Definition Classes
    IterableOps
  76. def hashCode(): Int
    Definition Classes
    Map → AnyRef → Any
  77. def head: (K, V)
    Definition Classes
    IterableOps
  78. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  79. def init: WrappedMap[K, V]
    Definition Classes
    IterableOps
  80. def inits: collection.Iterator[WrappedMap[K, V]]
    Definition Classes
    IterableOps
  81. def isDefinedAt(key: K): Boolean
    Definition Classes
    MapOps → PartialFunction
  82. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  83. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  84. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  85. def iterableFactory: IterableFactory[collection.mutable.Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  86. def iterator: collection.Iterator[(K, V)]
    Definition Classes
    WrappedMap → IterableOnce
  87. def keySet: collection.Set[K]
    Definition Classes
    MapOps
  88. def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[K, S]): S
    Definition Classes
    MapOps
  89. def keys: collection.Iterable[K]
    Definition Classes
    WrappedMap → MapOps
    Annotations
    @inline()
  90. def keysIterator: collection.Iterator[K]
    Definition Classes
    MapOps
  91. def knownSize: Int
    Definition Classes
    MapOps → Growable → IterableOnce
  92. def last: (K, V)
    Definition Classes
    IterableOps
  93. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  94. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, WrappedMap.this.type]
    Definition Classes
    Iterable
  95. def lift: (K) => Option[V]
    Definition Classes
    PartialFunction
  96. def map[K2, V2](f: ((K, V)) => (K2, V2)): collection.mutable.Map[K2, V2]
    Definition Classes
    MapOps
  97. def map[B](f: ((K, V)) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  98. def mapFactory: MapFactory[collection.mutable.Map]
    Definition Classes
    Map → Map → MapOps
  99. final def mapFromIterable[K2, V2](it: collection.Iterable[(K2, V2)]): collection.mutable.Map[K2, V2]
    Attributes
    protected
    Definition Classes
    MapOps
    Annotations
    @inline()
  100. def mapResult[NewTo](f: (WrappedMap[K, V]) => NewTo): Builder[(K, V), NewTo]
    Definition Classes
    Builder
  101. def mapValuesInPlace(f: (K, V) => V): WrappedMap.this.type
    Definition Classes
    MapOps
  102. def max[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  103. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  104. def maxByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  105. def maxOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  106. def min[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  107. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  108. def minByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  109. def minOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  110. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  111. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  112. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  113. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  114. def newSpecificBuilder: Builder[(K, V), WrappedMap[K, V]]
    Attributes
    protected[this]
    Definition Classes
    WrappedMap → MapFactoryDefaults → IterableFactoryDefaults → IterableOps
  115. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  116. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  117. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  118. def orElse[A1 <: K, B1 >: V](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  119. def partition(p: ((K, V)) => Boolean): (WrappedMap[K, V], WrappedMap[K, V])
    Definition Classes
    IterableOps
  120. def partitionMap[A1, A2](f: ((K, V)) => Either[A1, A2]): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])
    Definition Classes
    IterableOps
  121. def product[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  122. def put(key: K, value: V): Option[V]
    Definition Classes
    MapOps
  123. def reduce[B >: (K, V)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  124. def reduceLeft[B >: (K, V)](op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  125. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  126. def reduceOption[B >: (K, V)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  127. def reduceRight[B >: (K, V)](op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  128. def reduceRightOption[B >: (K, V)](op: ((K, V), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  129. def remove(key: K): Option[V]
    Definition Classes
    MapOps
  130. def result(): WrappedMap[K, V]
    Definition Classes
    MapOps → Builder
  131. def reversed: collection.Iterable[(K, V)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  132. def runWith[U](action: (V) => U): (K) => Boolean
    Definition Classes
    PartialFunction
  133. def scan[B >: (K, V)](z: B)(op: (B, B) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
  134. def scanLeft[B](z: B)(op: (B, (K, V)) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  135. def scanRight[B](z: B)(op: ((K, V), B) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
  136. def size: Int
    Definition Classes
    WrappedMap → IterableOnceOps
  137. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  138. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  139. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  140. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  141. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Definition Classes
    Builder
  142. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  143. def slice(from: Int, until: Int): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  144. def sliding(size: Int, step: Int): collection.Iterator[WrappedMap[K, V]]
    Definition Classes
    IterableOps
  145. def sliding(size: Int): collection.Iterator[WrappedMap[K, V]]
    Definition Classes
    IterableOps
  146. def span(p: ((K, V)) => Boolean): (WrappedMap[K, V], WrappedMap[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  147. def splitAt(n: Int): (WrappedMap[K, V], WrappedMap[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  148. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, V), S]): S
    Definition Classes
    IterableOnce
  149. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Map → Iterable
  150. def subtractAll(xs: collection.IterableOnce[K]): WrappedMap.this.type
    Definition Classes
    Shrinkable
  151. def subtractOne(key: K): WrappedMap.this.type
    Definition Classes
    WrappedMap → Shrinkable
  152. def sum[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  153. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  154. def tail: WrappedMap[K, V]
    Definition Classes
    IterableOps
  155. def tails: collection.Iterator[WrappedMap[K, V]]
    Definition Classes
    IterableOps
  156. def take(n: Int): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  157. def takeRight(n: Int): WrappedMap[K, V]
    Definition Classes
    IterableOps
  158. def takeWhile(p: ((K, V)) => Boolean): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  159. def tapEach[U](f: ((K, V)) => U): WrappedMap[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  160. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOnceOps
  161. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): scala.Array[B]
    Definition Classes
    IterableOnceOps
  162. final def toBuffer[B >: (K, V)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  163. def toIndexedSeq: collection.immutable.IndexedSeq[(K, V)]
    Definition Classes
    IterableOnceOps
  164. final def toIterable: WrappedMap.this.type
    Definition Classes
    Iterable → IterableOps
  165. def toList: collection.immutable.List[(K, V)]
    Definition Classes
    IterableOnceOps
  166. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): collection.immutable.Map[K, V]
    Definition Classes
    IterableOnceOps
  167. def toSeq: collection.immutable.Seq[(K, V)]
    Definition Classes
    IterableOnceOps
  168. def toSet[B >: (K, V)]: collection.immutable.Set[B]
    Definition Classes
    IterableOnceOps
  169. def toString(): String
    Definition Classes
    Map → Function1 → Iterable → AnyRef → Any
  170. def toVector: collection.immutable.Vector[(K, V)]
    Definition Classes
    IterableOnceOps
  171. def transpose[B](implicit asIterable: ((K, V)) => collection.Iterable[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]
    Definition Classes
    IterableOps
  172. def unapply(a: K): Option[V]
    Definition Classes
    PartialFunction
  173. def unlift: PartialFunction[K, B]
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toUnliftOps[K, B] performed by method UnliftOps in scala.Function1.This conversion will take place only if V is a subclass of Option[B] (V <: Option[B]).
    Definition Classes
    UnliftOps
  174. def unzip[A1, A2](implicit asPair: ((K, V)) => (A1, A2)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])
    Definition Classes
    IterableOps
  175. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) => (A1, A2, A3)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2], collection.mutable.Iterable[A3])
    Definition Classes
    IterableOps
  176. def update(key: K, value: V): Unit
    Definition Classes
    WrappedMap → MapOps
  177. def updateWith(key: K)(remappingFunction: (Option[V]) => Option[V]): Option[V]
    Definition Classes
    MapOps
  178. def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
    Definition Classes
    MapOps
  179. def values: collection.Iterable[V]
    Definition Classes
    MapOps
  180. def valuesIterator: collection.Iterator[V]
    Definition Classes
    MapOps
  181. def view: MapView[K, V]
    Definition Classes
    MapOps → IterableOps
  182. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  183. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  184. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  185. def withDefault(d: (K) => V): collection.mutable.Map[K, V]
    Definition Classes
    Map
  186. def withDefaultValue(d: V): collection.mutable.Map[K, V]
    Definition Classes
    Map
  187. def withFilter(p: ((K, V)) => Boolean): WithFilter[K, V, [x]collection.mutable.Iterable[x], [x, y]collection.mutable.Map[x, y]]
    Definition Classes
    MapFactoryDefaults → IterableOps
  188. def zip[B](that: collection.IterableOnce[B]): collection.mutable.Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  189. def zipAll[A1 >: (K, V), B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.mutable.Iterable[(A1, B)]
    Definition Classes
    IterableOps
  190. def zipWithIndex: collection.mutable.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 WrappedMap[K, V] toany2stringadd[WrappedMap[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:
    (wrappedMap: any2stringadd[WrappedMap[K, V]]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

  1. def +[V1 >: V](elem1: (K, V1), elem2: (K, V1), elems: (K, V1)*): collection.mutable.Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def +[V1 >: V](kv: (K, V1)): collection.mutable.Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map or fall back to Map.concat.

  3. def ++:[V1 >: V](that: collection.IterableOnce[(K, V1)]): collection.mutable.Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

  6. final def -(key1: K, key2: K, keys: K*): WrappedMap[K, V]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -- or removeAll on an immutable Map

  7. final def -(key: K): WrappedMap[K, V]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use - or remove on an immutable Map

  8. def --(keys: collection.IterableOnce[K]): WrappedMap[K, V]
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map.

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

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

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

  16. def companion: IterableFactory[[_]collection.mutable.Iterable[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

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

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

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

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

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

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

  22. def filterKeys(p: (K) => Boolean): MapView[K, V]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.filterKeys(f). A future version will include a strict version of this method (for now, .view.filterKeys(p).toMap).

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

    (Since version 2.13.0) Use .iterator.find instead

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

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

    (Since version 2.13.0) Use .iterator.fold instead

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

  33. def mapValues[W](f: (V) => W): MapView[K, W]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.mapValues(f). A future version will include a strict version of this method (for now, .view.mapValues(f).toMap).

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

  49. final def repr: WrappedMap[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

  50. final def retain(p: (K, V) => Boolean): WrappedMap.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

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

  52. def seq: WrappedMap.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toArray

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

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

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

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

  71. final def transform(f: (K, V) => V): WrappedMap.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapValuesInPlace instead

  72. def updated[V1 >: V](key: K, value: V1): collection.mutable.Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use m.clone().addOne((k,v)) instead of m.updated(k, v)

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

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

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

  75. def [B](y: B): (WrappedMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from WrappedMap[K, V] toArrowAssoc[WrappedMap[K, V]] performed by method ArrowAssoc in scala.Predef.This conversion will take place only if V is a subclass of Option[Nothing] (V <: Option[Nothing]).
    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 AbstractMap[K, V]

Inherited from collection.mutable.Map[K, V]

Inherited from MapOps[K, V, collection.mutable.Map, WrappedMap[K, V]]

Inherited from Shrinkable[K]

Inherited from Builder[(K, V), WrappedMap[K, V]]

Inherited from Growable[(K, V)]

Inherited from Clearable

Inherited from java.lang.Cloneable

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

Inherited from AbstractMap[K, V]

Inherited from collection.Map[K, V]

Inherited from Equals

Inherited from MapOps[K, V, [_, _]collection.mutable.Map[_, _], WrappedMap[K, V]]

Inherited from PartialFunction[K, V]

Inherited from (K) => V

Inherited from AbstractIterable[(K, V)]

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

Inherited from IterableOnceOps[(K, V), [_]collection.mutable.Iterable[_], WrappedMap[K, V]]

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

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion UnliftOps fromWrappedMap[K, V] to UnliftOps[K, B]

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

Inherited by implicit conversion any2stringadd fromWrappedMap[K, V] to any2stringadd[WrappedMap[K, V]]

Inherited by implicit conversion StringFormat fromWrappedMap[K, V] to StringFormat[WrappedMap[K, V]]

Inherited by implicit conversion Ensuring fromWrappedMap[K, V] to Ensuring[WrappedMap[K, V]]

Inherited by implicit conversion ArrowAssoc fromWrappedMap[K, V] to ArrowAssoc[WrappedMap[K, V]]

Ungrouped