Class/Object

scala.scalajs.js

WrappedDictionary

Related Docs: object WrappedDictionary | package js

Permalink

class WrappedDictionary[A] extends AbstractMap[String, A] with Map[String, A] with MapLike[String, A, WrappedDictionary[A]]

Wrapper to use a js.Dictionary as a scala.mutable.Map

Annotations
@inline()
Linear Supertypes
AbstractMap[String, A], Map[String, A], MapLike[String, A, WrappedDictionary[A]], collection.mutable.Cloneable[WrappedDictionary[A]], Cloneable, java.lang.Cloneable, Shrinkable[String], Builder[(String, A), WrappedDictionary[A]], Growable[(String, A)], Clearable, collection.mutable.Iterable[(String, A)], collection.mutable.Traversable[(String, A)], Mutable, AbstractMap[String, A], Map[String, A], MapLike[String, A, WrappedDictionary[A]], Subtractable[String, WrappedDictionary[A]], PartialFunction[String, A], (String) ⇒ A, GenMap[String, A], GenMapLike[String, A, WrappedDictionary[A]], AbstractIterable[(String, A)], collection.Iterable[(String, A)], IterableLike[(String, A), WrappedDictionary[A]], Equals, GenIterable[(String, A)], GenIterableLike[(String, A), WrappedDictionary[A]], AbstractTraversable[(String, A)], collection.Traversable[(String, A)], GenTraversable[(String, A)], GenericTraversableTemplate[(String, A), collection.mutable.Iterable], TraversableLike[(String, A), WrappedDictionary[A]], GenTraversableLike[(String, A), WrappedDictionary[A]], Parallelizable[(String, A), ParMap[String, A]], collection.TraversableOnce[(String, A)], GenTraversableOnce[(String, A)], FilterMonadic[(String, A), WrappedDictionary[A]], HasNewBuilder[(String, A), WrappedDictionary[A]], AnyRef, scala.Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedDictionary
  2. AbstractMap
  3. Map
  4. MapLike
  5. Cloneable
  6. Cloneable
  7. Cloneable
  8. Shrinkable
  9. Builder
  10. Growable
  11. Clearable
  12. Iterable
  13. Traversable
  14. Mutable
  15. AbstractMap
  16. Map
  17. MapLike
  18. Subtractable
  19. PartialFunction
  20. Function1
  21. GenMap
  22. GenMapLike
  23. AbstractIterable
  24. Iterable
  25. IterableLike
  26. Equals
  27. GenIterable
  28. GenIterableLike
  29. AbstractTraversable
  30. Traversable
  31. GenTraversable
  32. GenericTraversableTemplate
  33. TraversableLike
  34. GenTraversableLike
  35. Parallelizable
  36. TraversableOnce
  37. GenTraversableOnce
  38. FilterMonadic
  39. HasNewBuilder
  40. AnyRef
  41. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedDictionary(dict: Dictionary[A])

    Permalink

Type Members

  1. class DefaultKeySet extends AbstractSet[A] with Set[A] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  2. class DefaultValuesIterable extends AbstractIterable[B] with collection.Iterable[B] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  3. class FilteredKeys extends AbstractMap[A, B] with DefaultMap[A, B]

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  4. class MappedValues[C] extends AbstractMap[A, C] with DefaultMap[A, C]

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  5. type Self = WrappedDictionary[A]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  6. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

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

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

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

    Permalink
    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 >: A](kv: (String, B1)): Map[String, B1]

    Permalink
    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 ++[B1 >: A](xs: GenTraversableOnce[(String, B1)]): Map[String, B1]

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

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  7. def ++:[B >: (String, A), That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  8. def ++:[B >: (String, A), That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  9. def ++=(xs: collection.TraversableOnce[(String, A)]): WrappedDictionary.this.type

    Permalink
    Definition Classes
    Growable
  10. def +=(kv: (String, A)): WrappedDictionary.this.type

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → Builder → Growable
  11. def +=(elem1: (String, A), elem2: (String, A), elems: (String, A)*): WrappedDictionary.this.type

    Permalink
    Definition Classes
    Growable
  12. def -(elem1: String, elem2: String, elems: String*): WrappedDictionary[A]

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

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

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

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

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

  15. def --=(xs: collection.TraversableOnce[String]): WrappedDictionary.this.type

    Permalink
    Definition Classes
    Shrinkable
  16. def -=(key: String): WrappedDictionary.this.type

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → Shrinkable
  17. def -=(elem1: String, elem2: String, elems: String*): WrappedDictionary.this.type

    Permalink
    Definition Classes
    Shrinkable
  18. def ->[B](y: B): (WrappedDictionary[A], B)

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def :\[B](z: B)(op: ((String, A), B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. final def ==(arg0: scala.Any): Boolean

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

    Permalink
    Definition Classes
    MapLike → TraversableOnce
  23. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  24. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  25. def aggregate[B](z: ⇒ B)(seqop: (B, (String, A)) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def andThen[C](k: (A) ⇒ C): PartialFunction[String, C]

    Permalink
    Definition Classes
    PartialFunction → Function1
  27. def apply(key: String): A

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → Function1 → GenMapLike
  28. def applyOrElse[A1 <: String, B1 >: A](x: A1, default: (A1) ⇒ B1): B1

    Permalink
    Definition Classes
    PartialFunction
  29. final def asInstanceOf[T0]: T0

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

    Permalink
    Definition Classes
    IterableLike → Equals
  31. def clear(): Unit

    Permalink
    Definition Classes
    MapLike → Builder → Growable → Clearable
  32. def clone(): WrappedDictionary[A]

    Permalink
    Definition Classes
    MapLike → Cloneable → AnyRef
  33. def collect[B, That](pf: PartialFunction[(String, A), B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  34. def collectFirst[B](pf: PartialFunction[(String, A), B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  35. def companion: GenericCompanion[collection.mutable.Iterable]

    Permalink
    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  36. def compose[A](g: (A) ⇒ String): (A) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  37. def contains(key: String): Boolean

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → GenMapLike
  38. def copyToArray[B >: (String, A)](xs: scala.Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  39. def copyToArray[B >: (String, A)](xs: scala.Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def copyToArray[B >: (String, A)](xs: scala.Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def copyToBuffer[B >: (String, A)](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  42. def count(p: ((String, A)) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def default(key: String): A

    Permalink
    Definition Classes
    MapLike → GenMapLike
  44. val dict: Dictionary[A]

    Permalink
  45. def drop(n: Int): WrappedDictionary[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  46. def dropRight(n: Int): WrappedDictionary[A]

    Permalink
    Definition Classes
    IterableLike
  47. def dropWhile(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  48. def empty: WrappedDictionary[A]

    Permalink
    Definition Classes
    WrappedDictionary → Map → Map → MapLike
  49. def ensuring(cond: (WrappedDictionary[A]) ⇒ Boolean, msg: ⇒ scala.Any): WrappedDictionary[A]

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  54. def equals(that: scala.Any): Boolean

    Permalink
    Definition Classes
    GenMapLike → Equals → AnyRef → Any
  55. def exists(p: ((String, A)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  56. def filter(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def filterKeys(p: (String) ⇒ Boolean): Map[String, A]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  58. def filterNot(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Permalink
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  59. def finalize(): Unit

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

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  61. def flatMap[B, That](f: ((String, A)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  62. def flatten[B](implicit asTraversable: ((String, A)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  63. def fold[A1 >: (String, A)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def foldLeft[B](z: B)(op: (B, (String, A)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def foldRight[B](z: B)(op: ((String, A), B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  66. def forall(p: ((String, A)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  67. def foreach[U](f: ((String, A)) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  68. def formatted(fmtstr: String): String

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

    Permalink
    Definition Classes
    GenericTraversableTemplate
  70. def get(key: String): Option[A]

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → GenMapLike
  71. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    MapLike → GenMapLike
  73. def getOrElseUpdate(key: String, op: ⇒ A): A

    Permalink
    Definition Classes
    MapLike
  74. def groupBy[K](f: ((String, A)) ⇒ K): Map[K, WrappedDictionary[A]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  75. def grouped(size: Int): collection.Iterator[WrappedDictionary[A]]

    Permalink
    Definition Classes
    IterableLike
  76. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  77. def hashCode(): Int

    Permalink
    Definition Classes
    GenMapLike → AnyRef → Any
  78. def head: (String, A)

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  79. def headOption: Option[(String, A)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  80. def init: WrappedDictionary[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  81. def inits: collection.Iterator[WrappedDictionary[A]]

    Permalink
    Definition Classes
    TraversableLike
  82. def isDefinedAt(key: String): Boolean

    Permalink
    Definition Classes
    MapLike → GenMapLike → PartialFunction
  83. def isEmpty: Boolean

    Permalink
    Definition Classes
    MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  84. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  85. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  86. def iterator: collection.Iterator[(String, A)]

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → IterableLike → GenIterableLike
  87. def keySet: Set[String]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  88. def keys: collection.Iterable[String]

    Permalink
    Definition Classes
    WrappedDictionary → MapLike → GenMapLike
    Annotations
    @inline()
  89. def keysIterator: collection.Iterator[String]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  90. def last: (String, A)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  91. def lastOption: Option[(String, A)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  92. def lift: (String) ⇒ Option[A]

    Permalink
    Definition Classes
    PartialFunction
  93. def map[B, That](f: ((String, A)) ⇒ B)(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  94. def mapResult[NewTo](f: (WrappedDictionary[A]) ⇒ NewTo): Builder[(String, A), NewTo]

    Permalink
    Definition Classes
    Builder
  95. def mapValues[C](f: (A) ⇒ C): Map[String, C]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  96. def max[B >: (String, A)](implicit cmp: Ordering[B]): (String, A)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def maxBy[B](f: ((String, A)) ⇒ B)(implicit cmp: Ordering[B]): (String, A)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def min[B >: (String, A)](implicit cmp: Ordering[B]): (String, A)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def minBy[B](f: ((String, A)) ⇒ B)(implicit cmp: Ordering[B]): (String, A)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  104. def newBuilder: Builder[(String, A), WrappedDictionary[A]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → HasNewBuilder
  105. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  107. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  108. def orElse[A1 <: String, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Permalink
    Definition Classes
    PartialFunction
  109. def par: ParMap[String, A]

    Permalink
    Definition Classes
    Parallelizable
  110. def parCombiner: Combiner[(String, A), ParMap[String, A]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → Parallelizable
  111. def partition(p: ((String, A)) ⇒ Boolean): (WrappedDictionary[A], WrappedDictionary[A])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  112. def product[B >: (String, A)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def put(key: String, value: A): Option[A]

    Permalink
    Definition Classes
    MapLike
  114. def reduce[A1 >: (String, A)](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def reduceLeft[B >: (String, A)](op: (B, (String, A)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  116. def reduceLeftOption[B >: (String, A)](op: (B, (String, A)) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. def reduceOption[A1 >: (String, A)](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def reduceRight[B >: (String, A)](op: ((String, A), B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  119. def reduceRightOption[B >: (String, A)](op: ((String, A), B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def remove(key: String): Option[A]

    Permalink
    Definition Classes
    MapLike
  121. def repr: WrappedDictionary[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  122. def result(): WrappedDictionary[A]

    Permalink
    Definition Classes
    MapLike → Builder
  123. def retain(p: (String, A) ⇒ Boolean): WrappedDictionary.this.type

    Permalink
    Definition Classes
    MapLike
  124. def reversed: List[(String, A)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  125. def runWith[U](action: (A) ⇒ U): (String) ⇒ Boolean

    Permalink
    Definition Classes
    PartialFunction
  126. def sameElements[B >: (String, A)](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  127. def scan[B >: (String, A), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  128. def scanLeft[B, That](z: B)(op: (B, (String, A)) ⇒ B)(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  129. def scanRight[B, That](z: B)(op: ((String, A), B) ⇒ B)(implicit bf: CanBuildFrom[WrappedDictionary[A], B, That]): That

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

  130. def seq: Map[String, A]

    Permalink
    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  131. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Permalink
    Definition Classes
    Builder
  133. def sizeHint(coll: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  134. def sizeHint(size: Int): Unit

    Permalink
    Definition Classes
    Builder
  135. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  136. def slice(from: Int, until: Int): WrappedDictionary[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  137. def sliding(size: Int, step: Int): collection.Iterator[WrappedDictionary[A]]

    Permalink
    Definition Classes
    IterableLike
  138. def sliding(size: Int): collection.Iterator[WrappedDictionary[A]]

    Permalink
    Definition Classes
    IterableLike
  139. def span(p: ((String, A)) ⇒ Boolean): (WrappedDictionary[A], WrappedDictionary[A])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  140. def splitAt(n: Int): (WrappedDictionary[A], WrappedDictionary[A])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  141. def stringPrefix: String

    Permalink
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  142. def sum[B >: (String, A)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  144. def tail: WrappedDictionary[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  145. def tails: collection.Iterator[WrappedDictionary[A]]

    Permalink
    Definition Classes
    TraversableLike
  146. def take(n: Int): WrappedDictionary[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  147. def takeRight(n: Int): WrappedDictionary[A]

    Permalink
    Definition Classes
    IterableLike
  148. def takeWhile(p: ((String, A)) ⇒ Boolean): WrappedDictionary[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  149. def thisCollection: collection.Iterable[(String, A)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  150. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, A), Col[(String, A)]]): Col[(String, A)]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  151. def toArray[B >: (String, A)](implicit arg0: ClassTag[B]): scala.Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. def toBuffer[C >: (String, A)]: Buffer[C]

    Permalink
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  153. def toCollection(repr: WrappedDictionary[A]): collection.Iterable[(String, A)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  154. def toIndexedSeq: collection.immutable.IndexedSeq[(String, A)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def toIterable: collection.Iterable[(String, A)]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  156. def toIterator: collection.Iterator[(String, A)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  157. def toList: List[(String, A)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def toMap[T, U](implicit ev: <:<[(String, A), (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedDictionary[A] to CollectionsHaveToParArray[WrappedDictionary[A], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (WrappedDictionary[A]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  160. def toSeq: collection.Seq[(String, A)]

    Permalink
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  161. def toSet[B >: (String, A)]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  162. def toStream: collection.immutable.Stream[(String, A)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  163. def toString(): String

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

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  165. def toVector: Vector[(String, A)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  166. def transform(f: (String, A) ⇒ A): WrappedDictionary.this.type

    Permalink
    Definition Classes
    MapLike
  167. def transpose[B](implicit asTraversable: ((String, A)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]

    Permalink
    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])

    Permalink
    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])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  170. def update(key: String, value: A): Unit

    Permalink
    Definition Classes
    WrappedDictionary → MapLike
  171. def updated[B1 >: A](key: String, value: B1): Map[String, B1]

    Permalink
    Definition Classes
    MapLike → MapLike
  172. def values: collection.Iterable[A]

    Permalink
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

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

  173. def valuesIterator: collection.Iterator[A]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  174. def view(from: Int, until: Int): IterableView[(String, A), WrappedDictionary[A]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  175. def view: IterableView[(String, A), WrappedDictionary[A]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  176. final def wait(): Unit

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

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

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

    Permalink
    Definition Classes
    Map
  180. def withDefaultValue(d: A): Map[String, A]

    Permalink
    Definition Classes
    Map
  181. def withFilter(p: ((String, A)) ⇒ Boolean): FilterMonadic[(String, A), WrappedDictionary[A]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  182. def zip[A1 >: (String, A), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedDictionary[A], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  183. def zipAll[B, A1 >: (String, A), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedDictionary[A], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  184. def zipWithIndex[A1 >: (String, A), That](implicit bf: CanBuildFrom[WrappedDictionary[A], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  185. def [B](y: B): (WrappedDictionary[A], B)

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

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedDictionary[A] to any2stringadd[WrappedDictionary[A]] performed by method any2stringadd in scala.Predef.
    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:
    (wrappedDictionary: any2stringadd[WrappedDictionary[A]]).+(other)
    Definition Classes
    any2stringadd
  2. def filter(p: ((String, A)) ⇒ Boolean): collection.TraversableOnce[(String, A)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedDictionary[A] to MonadOps[(String, A)] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedDictionary: MonadOps[(String, A)]).filter(p)
    Definition Classes
    MonadOps
  3. def flatMap[B](f: ((String, A)) ⇒ GenTraversableOnce[B]): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedDictionary[A] to MonadOps[(String, A)] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedDictionary: MonadOps[(String, A)]).flatMap(f)
    Definition Classes
    MonadOps
  4. def map[B](f: ((String, A)) ⇒ B): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedDictionary[A] to MonadOps[(String, A)] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedDictionary: MonadOps[(String, A)]).map(f)
    Definition Classes
    MonadOps
  5. def withFilter(p: ((String, A)) ⇒ Boolean): collection.Iterator[(String, A)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedDictionary[A] to MonadOps[(String, A)] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (wrappedDictionary: MonadOps[(String, A)]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from AbstractMap[String, A]

Inherited from Map[String, A]

Inherited from MapLike[String, A, WrappedDictionary[A]]

Inherited from Cloneable

Inherited from java.lang.Cloneable

Inherited from Shrinkable[String]

Inherited from Builder[(String, A), WrappedDictionary[A]]

Inherited from Growable[(String, A)]

Inherited from Clearable

Inherited from collection.mutable.Iterable[(String, A)]

Inherited from collection.mutable.Traversable[(String, A)]

Inherited from Mutable

Inherited from AbstractMap[String, A]

Inherited from Map[String, A]

Inherited from MapLike[String, A, WrappedDictionary[A]]

Inherited from Subtractable[String, WrappedDictionary[A]]

Inherited from PartialFunction[String, A]

Inherited from (String) ⇒ A

Inherited from GenMap[String, A]

Inherited from GenMapLike[String, A, WrappedDictionary[A]]

Inherited from AbstractIterable[(String, A)]

Inherited from collection.Iterable[(String, A)]

Inherited from IterableLike[(String, A), WrappedDictionary[A]]

Inherited from Equals

Inherited from GenIterable[(String, A)]

Inherited from GenIterableLike[(String, A), WrappedDictionary[A]]

Inherited from AbstractTraversable[(String, A)]

Inherited from collection.Traversable[(String, A)]

Inherited from GenTraversable[(String, A)]

Inherited from TraversableLike[(String, A), WrappedDictionary[A]]

Inherited from GenTraversableLike[(String, A), WrappedDictionary[A]]

Inherited from Parallelizable[(String, A), ParMap[String, A]]

Inherited from collection.TraversableOnce[(String, A)]

Inherited from GenTraversableOnce[(String, A)]

Inherited from FilterMonadic[(String, A), WrappedDictionary[A]]

Inherited from HasNewBuilder[(String, A), WrappedDictionary[A]]

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion CollectionsHaveToParArray from WrappedDictionary[A] to CollectionsHaveToParArray[WrappedDictionary[A], T]

Inherited by implicit conversion MonadOps from WrappedDictionary[A] to MonadOps[(String, A)]

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

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

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

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

Inherited by implicit conversion alternateImplicit from WrappedDictionary[A] to ForceImplicitAmbiguity

Ungrouped