scala.scalajs.js

Dictionary

sealed trait Dictionary[A] extends Object

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.

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("prop")) // displays 5
xDict.delete("prop")   // removes the property "prop"
println(xDict("prop")) // displays undefined

To enumerate all the keys of a dictionary, use js.Object.keys, which returns a js.Array of the properties. It can be used in a for comprehension like this:

for (prop <- js.Object.keys(xDict)) {
val value = xDict(prop)
println(prop + " -> " + value)
}
Annotations
@RawJSType()
Linear Supertypes
Object, Any, AnyRef, scala.Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Dictionary
  2. Object
  3. Any
  4. AnyRef
  5. Any
Implicitly
  1. by wrapDictionary
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: scala.Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +[B1 >: B](elem1: (String, B1), elem2: (String, B1), elems: (String, B1)*): Map[String, B1]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  4. def +[B1 >: B](kv: (String, B1)): Map[String, B1]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  5. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to any2stringadd[Dictionary[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  6. def ++[B1 >: B](xs: GenTraversableOnce[(String, B1)]): Map[String, B1]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new map. Use ++= to add an element to this map and return that map itself.

  7. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  9. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  10. def ++=(xs: collection.TraversableOnce[(String, A)]): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  11. def +=(kv: (String, A)): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary → MapLike → Builder → Growable
  12. def +=(elem1: (String, A), elem2: (String, A), elems: (String, A)*): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  13. def -(elem1: String, elem2: String, elems: String*): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  14. def -(key: String): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike → Subtractable → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  15. def --(xs: GenTraversableOnce[String]): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new map. Use --= to remove an element from this map and return that map itself.

  16. def --=(xs: collection.TraversableOnce[String]): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  17. def -=(key: String): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary → MapLike → Shrinkable
  18. def -=(elem1: String, elem2: String, elems: String*): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  19. def ->[B](y: B): (Dictionary[A], B)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to ArrowAssoc[Dictionary[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  20. def /:[B](z: B)(op: (B, (String, A)) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def :\[B](z: B)(op: ((String, A), B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. final def ==(arg0: scala.Any): Boolean

    Definition Classes
    AnyRef → Any
  23. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableOnce
  24. def addString(b: StringBuilder): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  25. def addString(b: StringBuilder, sep: String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  26. def aggregate[B](z: ⇒ B)(seqop: (B, (String, A)) ⇒ B, combop: (B, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def andThen[C](k: (A) ⇒ C): PartialFunction[String, C]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  28. def apply(key: String): A

    Reads a field of this object by its name.

    Reads a field of this object by its name.

    This will fail with a ClassCastException if the key doesn't exist and the return type doesn't allow js.undefined as value. If the return type does allow js.undefined, applying with a non-existent key will return js.undefined.

    Annotations
    @JSBracketAccess()
  29. def applyOrElse[A1 <: A, B1 >: B](x: A1, default: (A1) ⇒ B1): B1

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  30. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  31. def canEqual(that: scala.Any): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → Equals
  32. def clear(): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Builder → Growable → Clearable
  33. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def collect[B, That](pf: PartialFunction[(String, A), B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  35. def collectFirst[B](pf: PartialFunction[(String, A), B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  36. def companion: GenericCompanion[collection.mutable.Iterable]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  37. def compose[A](g: (A) ⇒ String): (A) ⇒ A

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  38. def contains(key: String): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary → MapLike → GenMapLike
  39. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  40. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  43. def count(p: ((String, A)) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def default(key: String): A

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  45. def delete(key: String): Unit

    Deletes a property of this object by its name.

    Deletes a property of this object by its name. The property must be configurable. This method is equivalent to the "delete" keyword in JavaScript.

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

  46. val dict: Dictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary
  47. def drop(n: Int): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  48. def dropRight(n: Int): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike
  49. def dropWhile(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  50. def empty: WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary → Map → Map → MapLike
  51. def ensuring(cond: (Dictionary[A]) ⇒ Boolean, msg: ⇒ scala.Any): Dictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to Ensuring[Dictionary[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  52. def ensuring(cond: (Dictionary[A]) ⇒ Boolean): Dictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to Ensuring[Dictionary[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  53. def ensuring(cond: Boolean, msg: ⇒ scala.Any): Dictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to Ensuring[Dictionary[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  54. def ensuring(cond: Boolean): Dictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to Ensuring[Dictionary[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  55. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  56. def equals(arg0: scala.Any): Boolean

    Definition Classes
    AnyRef → Any
  57. def exists(p: ((String, A)) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  58. def filter(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def filterKeys(p: (String) ⇒ Boolean): Map[String, A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  60. def filterNot(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  61. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  62. def find(p: ((String, A)) ⇒ Boolean): Option[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  63. def flatMap[B, That](f: ((String, A)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  64. def flatten[B](implicit asTraversable: ((String, A)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[B]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  65. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def foldLeft[B](z: B)(op: (B, (String, A)) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def foldRight[B](z: B)(op: ((String, A), B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  68. def forall(p: ((String, A)) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  69. def foreach[U](f: ((String, A)) ⇒ U): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  70. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to StringFormat[Dictionary[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  71. def genericBuilder[B]: Builder[B, collection.mutable.Iterable[B]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  72. def get(key: String): UndefOr[A]

    Reads a field of this object by its name.

    Reads a field of this object by its name.

    This will return undefined if the key doesn't exist. It will also return undefined if the value associated with the key is undefined. To truly check for the existence of a property, use js.Object.hasOwnProperty.

    Annotations
    @JSBracketAccess()
  73. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  74. def getOrElse[B1 >: B](key: String, default: ⇒ B1): B1

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  75. def getOrElseUpdate(key: String, op: ⇒ A): A

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  76. def groupBy[K](f: ((String, A)) ⇒ K): Map[K, WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  77. def grouped(size: Int): collection.Iterator[WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike
  78. def hasDefiniteSize: Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  79. def hasOwnProperty(v: String): Boolean

    Tests whether this object has the specified property as a direct property.

    Tests whether this object has the specified property as a direct property.

    Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.

    MDN

    Definition Classes
    Object
  80. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  81. def head: (String, A)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  82. def headOption: Option[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def init: WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  84. def inits: collection.Iterator[WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  85. def isDefinedAt(key: String): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike → PartialFunction
  86. def isEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  87. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  88. def isPrototypeOf(v: Object): Boolean

    Tests whether this object is in the prototype chain of another object.

    Tests whether this object is in the prototype chain of another object.

    Definition Classes
    Object
  89. final def isTraversableAgain: Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  90. def iterator: Iterator[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary → MapLike → IterableLike → GenIterableLike
  91. def keySet: Set[String]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  92. def keys: Iterable[String]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedDictionary → MapLike → GenMapLike
  93. def keysIterator: collection.Iterator[String]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  94. def last: (String, A)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def lastOption: Option[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  96. def lift: (String) ⇒ Option[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  97. def map[B, That](f: ((String, A)) ⇒ B)(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  98. def mapResult[NewTo](f: (WrappedDictionary[A]) ⇒ NewTo): Builder[(String, A), NewTo]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  99. def mapValues[C](f: (A) ⇒ C): Map[String, C]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  100. def max[B >: A](implicit cmp: Ordering[B]): (String, A)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def maxBy[B](f: ((String, A)) ⇒ B)(implicit cmp: Ordering[B]): (String, A)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def min[B >: A](implicit cmp: Ordering[B]): (String, A)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def minBy[B](f: ((String, A)) ⇒ B)(implicit cmp: Ordering[B]): (String, A)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def mkString: String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def mkString(sep: String): String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def mkString(start: String, sep: String, end: String): String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  108. def nonEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. final def notify(): Unit

    Definition Classes
    AnyRef
  110. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  111. def orElse[A1 <: A, B1 >: B](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  112. def par: ParMap[String, A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Parallelizable
  113. def partition(p: ((String, A)) ⇒ Boolean): (WrappedDictionary[A], WrappedDictionary[A])

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  114. def product[B >: A](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def propertyIsEnumerable(v: String): Boolean

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain. If the object does not have the specified property, this method returns false.

    MDN

    Definition Classes
    Object
  116. def put(key: String, value: A): Option[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  117. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def reduceLeft[B >: A](op: (B, (String, A)) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  119. def reduceLeftOption[B >: A](op: (B, (String, A)) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def reduceRight[B >: A](op: ((String, A), B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  122. def reduceRightOption[B >: A](op: ((String, A), B) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def remove(key: String): Option[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  124. def repr: WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  125. def result(): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Builder
  126. def retain(p: (String, A) ⇒ Boolean): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  127. def runWith[U](action: (A) ⇒ U): (String) ⇒ Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  128. def sameElements[B >: A](that: GenIterable[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  129. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  130. def scanLeft[B, That](z: B)(op: (B, (String, A)) ⇒ B)(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  131. def scanRight[B, That](z: B)(op: ((String, A), B) ⇒ B)(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  132. def seq: Map[String, A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  133. def size: Int

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  135. def sizeHint(coll: TraversableLike[_, _]): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  136. def sizeHint(size: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  137. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  138. def slice(from: Int, until: Int): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  139. def sliding(size: Int, step: Int): collection.Iterator[WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike
  140. def sliding(size: Int): collection.Iterator[WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike
  141. def span(p: ((String, A)) ⇒ Boolean): (WrappedDictionary[A], WrappedDictionary[A])

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  142. def splitAt(n: Int): (WrappedDictionary[A], WrappedDictionary[A])

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  143. def stringPrefix: String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  144. def sum[B >: A](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  145. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  146. def tail: WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  147. def tails: collection.Iterator[WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  148. def take(n: Int): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  149. def takeRight(n: Int): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike
  150. def takeWhile(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  151. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, A), Col[(String, A)]]): Col[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  152. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def toBuffer[C >: (A, B)]: Buffer[C]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  154. def toIndexedSeq: collection.immutable.IndexedSeq[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def toIterable: collection.Iterable[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  156. def toIterator: collection.Iterator[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  157. def toList: List[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def toLocaleString(): String

    Definition Classes
    Object
  159. def toMap[T, U](implicit ev: <:<[(String, A), (T, U)]): Map[T, U]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  160. def toSeq: collection.Seq[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  161. def toSet[B >: A]: Set[B]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  162. def toStream: collection.immutable.Stream[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  163. def toString(): String

    Definition Classes
    AnyRef → Any
  164. def toTraversable: collection.Traversable[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  165. def toVector: Vector[(String, A)]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  166. def transform(f: (String, A) ⇒ A): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  167. def transpose[B](implicit asTraversable: ((String, A)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  168. def unzip[A1, A2](implicit asPair: ((String, A)) ⇒ (A1, A2)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  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 information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  170. def update(key: String, value: A): Unit

    Writes a field of this object by its name.

    Writes a field of this object by its name.

    Annotations
    @JSBracketAccess()
  171. def updated[B1 >: B](key: String, value: B1): Map[String, B1]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
  172. def valueOf(): scala.Any

    Definition Classes
    Object
  173. def values: collection.Iterable[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) values returns Iterable[B] rather than Iterator[B].

  174. def valuesIterator: collection.Iterator[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  175. def view(from: Int, until: Int): IterableView[(String, A), WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike
  176. def view: IterableView[(String, A), WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike
  177. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  178. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  179. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  180. def withDefault(d: (String) ⇒ A): Map[String, A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  181. def withDefaultValue(d: A): Map[String, A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  182. def withFilter(p: ((String, A)) ⇒ Boolean): FilterMonadic[(String, A), WrappedDictionary[A]]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → FilterMonadic
  183. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  184. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedDictionary[A], (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  185. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[WrappedDictionary[A], (A1, Int), That]): That

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  186. def [B](y: B): (Dictionary[A], B)

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to ArrowAssoc[Dictionary[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def apply(key: String): A

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[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]).apply(key)
    Definition Classes
    MapLike → GenMapLike → Function1
  2. def clone(): WrappedDictionary[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[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
    MapLike → Cloneable → AnyRef
  3. def equals(that: scala.Any): Boolean

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[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(that)
    Definition Classes
    GenMapLike → Equals → AnyRef → Any
  4. def get(key: String): Option[A]

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[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]).get(key)
    Definition Classes
    WrappedDictionary → MapLike → GenMapLike
  5. def hashCode(): Int

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[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
    GenMapLike → AnyRef → Any
  6. def toString(): String

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[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
    MapLike → TraversableLike → Function1 → AnyRef → Any
  7. def update(key: String, value: A): Unit

    Implicit information
    This member is added by an implicit conversion from Dictionary[A] to WrappedDictionary[A] performed by method wrapDictionary in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dictionary: WrappedDictionary[A]).update(key, value)
    Definition Classes
    MapLike

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion wrapDictionary from Dictionary[A] to WrappedDictionary[A]

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

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

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

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

Ungrouped