Packages

sealed trait Dictionary[A] extends Any

Dictionary "view" of a JavaScript value.

Using objects as dictionaries (maps from strings to values) through their properties is a common idiom in JavaScript. This trait lets you treat an object as such a dictionary, with the familiar API of a Map.

To use it, cast your object, say x, into a Dictionary using

val xDict = x.asInstanceOf[js.Dictionary[Int]]

then use it as

xDict("prop") = 5
println(xDict.get("prop")) // displays Some(5)
xDict -= "prop"            // removes the property "prop"
println(xDict.get("prop")) // displays None

To enumerate all the keys of a dictionary, use collection methods or for comprehensions. For example:

for ((prop, value) <- xDict) {
  println(prop + " -> " + value)
}

Note that this does not enumerate properties in the prototype chain of xDict.

This trait extends js.Any directly, because it is not safe to call methods of js.Object on it, given that the name of these methods could be used as keys in the dictionary.

Annotations
@JSType()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dictionary
  2. Any
  3. AnyRef
  4. Any
Implicitly
  1. by wrapDictionary
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

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

Shadowed Implicit Value Members

  1. def clone(): WrappedDictionary[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (dictionary: WrappedDictionary[A]).clone()
    Definition Classes
    MapOps → Cloneable → AnyRef
  2. def equals(o: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (dictionary: WrappedDictionary[A]).equals(o)
    Definition Classes
    Map → Equals → AnyRef → Any
  3. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (dictionary: WrappedDictionary[A]).hashCode()
    Definition Classes
    Map → AnyRef → Any
  4. def toString(): String
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (dictionary: WrappedDictionary[A]).toString()
    Definition Classes
    Map → Function1 → Iterable → AnyRef → Any

Deprecated Value Members

  1. def +[V1 >: V](elem1: (String, V1), elem2: (String, V1), elems: (String, V1)*): Map[String, V1]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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: (String, V1)): Map[String, V1]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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[(String, V1)]): Map[String, V1]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  4. def ++:[B >: A](that: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= (addAll) instead of varargs +=

  6. final def -(key1: String, key2: String, keys: String*): WrappedDictionary[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map.

  9. final def /:[B](z: B)(op: (B, (String, A)) => B): B
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  10. final def :\[B](z: B)(op: ((String, A), B) => B): B
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  11. def aggregate[B](z: => B)(seqop: (B, (String, A)) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  12. def companion: IterableFactory[[_]collection.mutable.Iterable[_]]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  13. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  14. def filterKeys(p: (String) => Boolean): MapView[String, A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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).

  15. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  16. def mapValues[W](f: (A) => W): MapView[String, W]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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).

  17. final def repr: WrappedDictionary[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    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

  18. final def retain(p: (String, A) => Boolean): WrappedDictionary[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  19. def seq: WrappedDictionary[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  20. final def toIterator: collection.Iterator[(String, A)]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  21. final def toStream: collection.immutable.Stream[(String, A)]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  22. final def toTraversable: collection.Traversable[(String, A)]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  23. final def transform(f: (String, A) => A): WrappedDictionary[A]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapValuesInPlace instead

  24. def updated[V1 >: V](key: String, value: V1): Map[String, V1]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  25. def view(from: Int, until: Int): View[(String, A)]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  26. def [B](y: B): (Dictionary[A], B)
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toArrowAssoc[Dictionary[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion wrapDictionary fromDictionary[A] to WrappedDictionary[A]

Inherited by implicit conversion any2stringadd fromDictionary[A] to any2stringadd[Dictionary[A]]

Inherited by implicit conversion StringFormat fromDictionary[A] to StringFormat[Dictionary[A]]

Inherited by implicit conversion Ensuring fromDictionary[A] to Ensuring[Dictionary[A]]

Inherited by implicit conversion ArrowAssoc fromDictionary[A] to ArrowAssoc[Dictionary[A]]

Ungrouped