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)]): collection.mutable.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. 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()
  10. 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()
  11. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  12. 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
  13. 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
  14. def addString(sb: collection.mutable.StringBuilder, start: String, sep: String, end: String): sb.type
    Implicit
    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
  15. final def addString(b: collection.mutable.StringBuilder): b.type
    Implicit
    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()
  16. final def addString(b: collection.mutable.StringBuilder, sep: String): b.type
    Implicit
    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. 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
  18. 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
  19. 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
  20. 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
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. 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
  23. 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
  24. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  25. 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
  26. def collect[K2, V2](pf: PartialFunction[(String, A), (K2, V2)]): collection.mutable.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
  27. 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
  28. 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
  29. 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
  30. 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()
  31. def concat[V2 >: V](suffix: collection.IterableOnce[(String, V2)]): collection.mutable.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
  32. 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
  33. 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
  34. 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
  35. 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
    Annotations
    @deprecatedOverriding()
  36. 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
    Annotations
    @deprecatedOverriding()
  37. 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
  38. 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
  39. 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])
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  50. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  51. 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
  52. 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
  53. 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
  54. 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
  55. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  56. 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
  57. 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
  58. def flatMap[K2, V2](f: ((String, A)) => collection.IterableOnce[(K2, V2)]): collection.mutable.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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. 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
  67. 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
  68. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  69. def getOrElse[V1 >: A](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
    WrappedDictionary → MapOps
  70. 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
    WrappedDictionary → MapOps
  71. def groupBy[K](f: ((String, A)) => K): collection.immutable.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
  72. def groupMap[K, B](key: ((String, A)) => K)(f: ((String, A)) => B): collection.immutable.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
  73. def groupMapReduce[K, B](key: ((String, A)) => K)(f: ((String, A)) => B)(reduce: (B, B) => B): collection.immutable.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
  74. 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
  75. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  76. 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
  77. 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
  78. 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
  79. 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
  80. 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
  81. 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
  82. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  83. 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
  84. 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
  85. 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
  86. def keySet: collection.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
  87. 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
  88. 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()
  89. 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
  90. 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
  91. 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
  92. 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
  93. 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
  94. 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
  95. 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
  96. def map[K2, V2](f: ((String, A)) => (K2, V2)): collection.mutable.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
  97. 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
  98. def mapFactory: MapFactory[collection.mutable.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
  99. 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
  100. 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
  101. 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
  102. def maxBy[B](f: ((String, A)) => B)(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
  103. def maxByOption[B](f: ((String, A)) => B)(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
  104. 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
  105. 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
  106. def minBy[B](f: ((String, A)) => B)(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
  107. def minByOption[B](f: ((String, A)) => B)(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 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
  109. 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()
  110. 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()
  111. 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
  112. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  113. 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()
  114. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  115. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  116. 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
  117. 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
  118. 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
  119. 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
  120. 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
  121. 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
  122. 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
  123. 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
  124. 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
  125. 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
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. 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
  134. 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
  135. 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
  136. 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
  137. 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
  138. 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
  139. 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()
  140. 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
  141. 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
  142. 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
  143. 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
  144. 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
  145. 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
  146. 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
  147. 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
  148. 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
  149. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  150. 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
  151. 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
  152. 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
  153. 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
  154. 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
  155. 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
  156. 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
  157. 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
  158. 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()
  159. 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
  160. 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
  161. def toMap[K, V](implicit ev: <:<[(String, A), (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Dictionary[A] toWrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  162. 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
  163. def toSet[B >: A]: collection.immutable.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
  164. def toString(): String
    Definition Classes
    AnyRef → Any
  165. 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
  166. 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
  167. 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
  168. 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
  169. 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
  170. 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
  171. 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
  172. 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
  173. 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
  174. 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
  175. 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
  176. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  177. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  178. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  179. def withDefault(d: (String) => A): collection.mutable.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
  180. def withDefaultValue(d: A): collection.mutable.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
  181. def withFilter(p: ((String, A)) => Boolean): WithFilter[String, A, [x]collection.mutable.Iterable[x], [x, y]collection.mutable.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
  182. 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
  183. 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
  184. 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)*): collection.mutable.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)): collection.mutable.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)]): collection.mutable.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 ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  6. final def -(key1: String, key2: String, keys: String*): WrappedDictionary[A]
    Implicit
    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. 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
    Annotations
    @deprecated
    Deprecated

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

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

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

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

  13. 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() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

  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 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
    @deprecated @inline()
    Deprecated

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

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

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

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

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

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

  22. 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
    Annotations
    @deprecated
    Deprecated

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

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

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

  25. 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) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

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

  27. def updated[V1 >: V](key: String, value: V1): collection.mutable.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)

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

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