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): 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
  15. 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()
  16. 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()
  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
  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
  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 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()
  68. 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
  69. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  70. 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
  71. 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
  72. 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
  73. 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
  74. 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
  75. 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
  76. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  77. 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
  78. 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
  79. 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
  80. 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
  81. 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
  82. 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
  83. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  84. 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
  85. 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
  86. 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
  87. 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
  88. 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
  89. 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()
  90. 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
  91. 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
  92. 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
  93. 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
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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()
  111. 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()
  112. 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
  113. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  114. 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")
  115. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  116. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  117. 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
  118. 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
  119. 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
  120. 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
  121. 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
  122. 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
  123. 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
  124. 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
  125. 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
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. 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
  134. 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
  135. 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
  136. 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
  137. 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
  138. 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
  139. 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
  140. 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()
  141. 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
  142. 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
  143. 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
  144. 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
  145. 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
  146. 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
  147. 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
  148. 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
  149. 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
  150. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  151. 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
  152. 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
  153. 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
  154. 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
  155. 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
  156. 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
  157. 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
  158. 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
  159. 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()
  160. 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
  161. 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
  162. 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
  163. 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
  164. 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
  165. 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
  166. def toString(): String
    Definition Classes
    AnyRef → Any
  167. 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
  168. 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
  169. 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
  170. 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
  171. 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
  172. 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
  173. 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
  174. 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
  175. 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
  176. 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
  177. 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
  178. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  179. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  180. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  181. 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
  182. 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
  183. 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
  184. 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
  185. 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
  186. 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("Use iterableFactory instead", "2.13.0") @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 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): 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)

  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