Packages

final class WrappedDictionary[A] extends AbstractMap[String, A] with MapOps[String, A, collection.mutable.Map, WrappedDictionary[A]]

Wrapper to use a js.Dictionary as a scala.mutable.Map

Annotations
@inline()
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedDictionary
  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 toJSDictionary
  3. by iterableOnceExtensionMethods
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new WrappedDictionary(dict: Dictionary[A])

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

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toany2stringadd[WrappedDictionary[A]] 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:
    (wrappedDictionary: any2stringadd[WrappedDictionary[A]]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

  1. def +[V1 >: A](elem1: (String, V1), elem2: (String, V1), elems: (String, V1)*): collection.mutable.Map[String, 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 >: A](kv: (String, V1)): collection.mutable.Map[String, 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 >: A](that: collection.IterableOnce[(String, V1)]): collection.mutable.Map[String, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  4. def ++:[B >: (String, A)](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: (String, A), elem2: (String, A), elems: (String, A)*): WrappedDictionary.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: String, key2: String, keys: String*): WrappedDictionary[A]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  7. final def -(key: String): WrappedDictionary[A]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  8. def --(keys: collection.IterableOnce[String]): WrappedDictionary[A]
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map.

  9. def -=(elem1: String, elem2: String, elems: String*): WrappedDictionary.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, (String, A)) => B): B
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)])./:(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, (String, A)) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  12. def :\[B](z: B)(op: ((String, A), B) => B): B
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).:\(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: ((String, A), 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, (String, A)) => 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[(String, A), B]): Option[B]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).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() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

  18. final def copyToBuffer[B >: (String, A)](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

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

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

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

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

  22. def filterKeys(p: (String) => Boolean): MapView[String, A]
    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: ((String, A)) => Boolean): Option[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  24. def flatMap[B](f: ((String, A)) => collection.IterableOnce[B]): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).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 WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).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, (String, A)) => B): B
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).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: ((String, A), B) => B): B
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

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

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

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

  32. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  33. def map[B](f: ((String, A)) => B): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  34. def mapValues[W](f: (A) => W): MapView[String, 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).

  35. def max(implicit ord: math.Ordering[(String, A)]): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  36. def maxBy[B](f: ((String, A)) => B)(implicit cmp: math.Ordering[B]): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  37. def min(implicit ord: math.Ordering[(String, A)]): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  38. def minBy[B](f: ((String, A)) => B)(implicit cmp: math.Ordering[B]): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

  40. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  41. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  42. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  43. def product(implicit num: math.Numeric[(String, A)]): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  44. def reduce(f: ((String, A), (String, A)) => (String, A)): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  45. def reduceLeft(f: ((String, A), (String, A)) => (String, A)): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  46. def reduceLeftOption(f: ((String, A), (String, A)) => (String, A)): Option[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  47. def reduceOption(f: ((String, A), (String, A)) => (String, A)): Option[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  48. def reduceRight(f: ((String, A), (String, A)) => (String, A)): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  49. def reduceRightOption(f: ((String, A), (String, A)) => (String, A)): Option[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  50. final def repr: WrappedDictionary[A]
    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

  51. final def retain(p: (String, A) => Boolean): WrappedDictionary.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

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

    (Since version 2.13.0) Use .iterator.sameElements instead

  53. def seq: WrappedDictionary.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  54. def size: Int
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  55. def sum(implicit num: math.Numeric[(String, A)]): (String, A)
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  56. def to[C1](factory: Factory[(String, A), C1]): C1
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.toArray

  58. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  59. def toIndexedSeq: collection.IndexedSeq[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  60. final def toIterable: collection.Iterable[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  62. def toIterator: collection.Iterator[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  63. final def toIterator: collection.Iterator[(String, A)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  64. def toList: collection.immutable.List[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

  66. def toSeq: collection.immutable.Seq[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  68. def toStream: collection.immutable.Stream[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  69. final def toStream: collection.immutable.Stream[(String, A)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  70. final def toTraversable: collection.Traversable[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  71. final def toTraversable: collection.Traversable[(String, A)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  72. def toVector: collection.immutable.Vector[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  73. final def transform(f: (String, A) => A): WrappedDictionary.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapValuesInPlace instead

  74. def updated[V1 >: A](key: String, value: V1): collection.mutable.Map[String, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  75. def view(from: Int, until: Int): View[(String, A)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  76. def withFilter(f: ((String, A)) => Boolean): collection.Iterator[(String, A)]
    Implicit
    This member is added by an implicit conversion from WrappedDictionary[A] toIterableOnceExtensionMethods[(String, A)] 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:
    (wrappedDictionary: IterableOnceExtensionMethods[(String, A)]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

Inherited from collection.mutable.Map[String, A]

Inherited from MapOps[String, A, collection.mutable.Map, WrappedDictionary[A]]

Inherited from Shrinkable[String]

Inherited from Builder[(String, A), WrappedDictionary[A]]

Inherited from Growable[(String, A)]

Inherited from Clearable

Inherited from java.lang.Cloneable

Inherited from collection.mutable.Iterable[(String, A)]

Inherited from AbstractMap[String, A]

Inherited from collection.Map[String, A]

Inherited from Equals

Inherited from MapFactoryDefaults[String, A, [x, y]collection.mutable.Map[x, y], [x]collection.mutable.Iterable[x]]

Inherited from MapOps[String, A, [_, _]collection.mutable.Map[_, _], WrappedDictionary[A]]

Inherited from PartialFunction[String, A]

Inherited from (String) => A

Inherited from AbstractIterable[(String, A)]

Inherited from collection.Iterable[(String, A)]

Inherited from IterableFactoryDefaults[(String, A), [x]collection.mutable.Iterable[x]]

Inherited from IterableOnceOps[(String, A), [_]collection.mutable.Iterable[_], WrappedDictionary[A]]

Inherited from collection.IterableOnce[(String, A)]

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion UnliftOps fromWrappedDictionary[A] to UnliftOps[String, B]

Inherited by implicit conversion toJSDictionary fromWrappedDictionary[A] to Dictionary[A]

Inherited by implicit conversion iterableOnceExtensionMethods fromWrappedDictionary[A] to IterableOnceExtensionMethods[(String, A)]

Inherited by implicit conversion any2stringadd fromWrappedDictionary[A] to any2stringadd[WrappedDictionary[A]]

Inherited by implicit conversion StringFormat fromWrappedDictionary[A] to StringFormat[WrappedDictionary[A]]

Inherited by implicit conversion Ensuring fromWrappedDictionary[A] to Ensuring[WrappedDictionary[A]]

Inherited by implicit conversion ArrowAssoc fromWrappedDictionary[A] to ArrowAssoc[WrappedDictionary[A]]

Ungrouped