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
@RawJSType() @native()
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. val dict: Dictionary[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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. 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
  51. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  52. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  53. 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
  54. 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
  55. 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
  56. 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
  57. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  58. 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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. 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
  67. 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
  68. 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
  69. 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()
  70. 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
  71. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  72. 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
  73. 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
  74. 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
  75. 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
  76. 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
  77. 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
  78. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  79. 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
  80. 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
  81. 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
  82. 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
  83. 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
  84. 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
  85. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  86. 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
  87. 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
  88. 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
  89. 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
  90. 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
  91. 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()
  92. 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
  93. 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
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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
  111. 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
  112. 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()
  113. 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()
  114. 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
  115. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  116. 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")
  117. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  118. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  119. 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
  120. 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
  121. 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
  122. 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
  123. 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
  124. 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
  125. 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
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. 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
  134. 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
  135. 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
  136. 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
  137. 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
  138. 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
  139. 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
  140. 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
  141. 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
  142. 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()
  143. 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
  144. 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
  145. 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
  146. 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
  147. 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
  148. 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
  149. 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
  150. 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
  151. 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
  152. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  153. 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
  154. 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
  155. 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
  156. 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
  157. 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
  158. 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
  159. 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
  160. 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
  161. 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()
  162. 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
  163. 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
  164. 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
  165. 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
  166. 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
  167. 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
  168. def toString(): String
    Definition Classes
    AnyRef → Any
  169. 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
  170. 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
  171. 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
  172. 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
  173. 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
  174. def update(key: String, value: A): Unit

    Writes a field of this object by its name.

    Writes a field of this object by its name.

    Annotations
    @JSBracketAccess()
  175. 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
  176. 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
  177. 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
  178. 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
  179. 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
  180. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  181. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  182. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  183. 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
  184. 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
  185. 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
  186. 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
  187. 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
  188. 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
  5. 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.
    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]).update(key, value)
    Definition Classes
    WrappedDictionary → MapOps

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 delete(key: String): Unit

    Deletes a property of this object by its name.

    Deletes a property of this object by its name.

    The property must be configurable. This method is equivalent to the "delete" keyword in JavaScript.

    Since we are using strict mode, this throws an exception, if the property isn't configurable.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.17) Use -= instead.

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

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

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

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

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

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

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

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

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

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

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

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

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