Packages

class Map[K, V] extends Object with Iterable[Tuple2[K, V]]

ECMAScript 2015

The Map object holds key-value pairs and remembers the original insertion order of the keys. Any value (both objects and primitive values) may be used as either a key or a value.

K

A type of key.

V

A type of value.

Annotations
@JSType() @native() @JSGlobal()
See also

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Map
  2. Iterable
  3. Object
  4. Any
  5. AnyRef
  6. Any
Implicitly
  1. by wrapMap
  2. by iterableOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Map(array: Iterable[Tuple2[K, V]])
  2. new Map()

Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +[V1 >: V](elem1: (K, V1), elem2: (K, V1), elems: (K, V1)*): collection.mutable.Map[K, V1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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 +[V1 >: V](kv: (K, V1)): collection.mutable.Map[K, V1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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
    This member is added by an implicit conversion from Map[K, V] to any2stringadd[Map[K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  6. def ++[V1 >: V](xs: GenTraversableOnce[(K, V1)]): collection.mutable.Map[K, V1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  10. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  11. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  12. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  13. def ++=(xs: collection.TraversableOnce[(K, V)]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  14. def +=(kv: (K, V)): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → Builder → Growable
  15. def +=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  16. def -(elem1: K, elem2: K, elems: K*): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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.

  17. def -(key: K): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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.

  18. def --(xs: GenTraversableOnce[K]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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.

  19. def --=(xs: collection.TraversableOnce[K]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  20. def -=(key: K): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → Shrinkable
  21. def -=(elem1: K, elem2: K, elems: K*): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  22. def ->[B](y: B): (Map[K, V], B)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to ArrowAssoc[Map[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  23. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  24. def aggregate[B](z: ⇒ B)(seqop: (B, (K, V)) ⇒ B, combop: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def aggregate[B](z: ⇒ B)(seqop: (B, Tuple2[K, V]) ⇒ B, combop: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def andThen[C](k: (V) ⇒ C): PartialFunction[K, C]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  27. def apply(key: K): V
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → Function1 → GenMapLike
  28. def applyOrElse[K1 <: K, V1 >: V](x: K1, default: (K1) ⇒ V1): V1
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → PartialFunction
  29. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  30. def clear(): Unit
  31. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  32. def collect[B, That](pf: PartialFunction[(K, V), B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  33. def collect[B, That](pf: PartialFunction[Tuple2[K, V], B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  34. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  35. def collectFirst[B](pf: PartialFunction[Tuple2[K, V], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  36. def compose[A](g: (A) ⇒ K): (A) ⇒ V
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  37. def contains(key: K): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → GenMapLike
  38. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  39. def copyToArray[B >: A](xs: scala.Array[B]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def copyToArray[B >: A](xs: scala.Array[B]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  45. def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  46. def count(p: ((K, V)) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def count(p: (Tuple2[K, V]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def default(key: K): V
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  49. def delete(key: K): Boolean
  50. def dropWhile(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  51. def dropWhile(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  52. def empty: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → Map → Map → MapLike
  53. def ensuring(cond: (Map[K, V]) ⇒ Boolean, msg: ⇒ scala.Any): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to Ensuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  54. def ensuring(cond: (Map[K, V]) ⇒ Boolean): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to Ensuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  55. def ensuring(cond: Boolean, msg: ⇒ scala.Any): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to Ensuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  56. def ensuring(cond: Boolean): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to Ensuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  57. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  58. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  59. def exists(p: ((K, V)) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  60. def exists(p: (Tuple2[K, V]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  61. def filter(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  62. def filter(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  63. def filterKeys(p: (K) ⇒ Boolean): collection.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  64. def filterNot(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  65. def filterNot(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  66. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  67. def find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  68. def find(p: (Tuple2[K, V]) ⇒ Boolean): Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  69. def flatMap[B, That](f: ((K, V)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  70. def flatMap[B, That](f: (Tuple2[K, V]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  71. def flatten[B](implicit asTraversable: ((K, V)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  72. def flatten[B](implicit asTraversable: (Tuple2[K, V]) ⇒ GenTraversableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  73. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def foldLeft[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def foldLeft[B](z: B)(op: (B, Tuple2[K, V]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def foldRight[B](z: B)(op: ((K, V), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  78. def foldRight[B](z: B)(op: (Tuple2[K, V], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  79. def forall(p: ((K, V)) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  80. def forall(p: (Tuple2[K, V]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  81. def foreach[U](f: ((K, V)) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  82. def foreach[U](f: (Tuple2[K, V]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  83. def get(key: K): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → GenMapLike
  84. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  85. def getOrElse[V1 >: V](key: K, default: ⇒ V1): V1
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  86. def getOrElseUpdate(key: K, op: ⇒ V): V
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  87. def groupBy[K](f: ((K, V)) ⇒ K): collection.immutable.Map[K, WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  88. def groupBy[K](f: (Tuple2[K, V]) ⇒ K): collection.immutable.Map[K, collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  89. 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
  90. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  91. def isDefinedAt(key: K): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike → PartialFunction
  92. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  93. 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
  94. def jsIterator(): Iterator[Tuple2[K, V]]

    JavaScript Iterator for this Iterable.

    JavaScript Iterator for this Iterable.

    Definition Classes
    MapIterable
    Annotations
    @JSName( symbol = js.Symbol.iterator )
  95. def keySet: collection.Set[K]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  96. def keys: collection.Iterable[K]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → GenMapLike
    Annotations
    @inline()
  97. def keysIterator: collection.Iterator[K]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  98. def lift: (K) ⇒ Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  99. def map[B, That](f: ((K, V)) ⇒ B)(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  100. def map[B, That](f: (Tuple2[K, V]) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  101. def mapResult[NewTo](f: (WrappedMap[K, V]) ⇒ NewTo): Builder[(K, V), NewTo]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  102. def mapValues[W](f: (V) ⇒ W): collection.Map[K, W]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  103. def max[B >: A](implicit cmp: Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def max[B >: A](implicit cmp: Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def maxBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def maxBy[B](f: (Tuple2[K, V]) ⇒ B)(implicit cmp: Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def min[B >: A](implicit cmp: Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def min[B >: A](implicit cmp: Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def minBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def minBy[B](f: (Tuple2[K, V]) ⇒ B)(implicit cmp: Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  112. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  113. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  114. def orElse[A1 <: A, B1 >: B](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  115. def partition(p: ((K, V)) ⇒ Boolean): (WrappedMap[K, V], WrappedMap[K, V])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def partition(p: (Tuple2[K, V]) ⇒ Boolean): (collection.Iterable[Tuple2[K, V]], collection.Iterable[Tuple2[K, V]])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def product[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def product[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. 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
  120. def put(key: K, value: V): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  121. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def reduceLeft[B >: A](op: (B, (K, V)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  124. def reduceLeft[B >: A](op: (B, Tuple2[K, V]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  125. def reduceLeftOption[B >: A](op: (B, (K, V)) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def reduceLeftOption[B >: A](op: (B, Tuple2[K, V]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def reduceRight[B >: A](op: ((K, V), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  130. def reduceRight[B >: A](op: (Tuple2[K, V], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  131. def reduceRightOption[B >: A](op: ((K, V), B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def reduceRightOption[B >: A](op: (Tuple2[K, V], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def remove(key: K): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  134. def result(): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Builder
  135. def retain(p: (K, V) ⇒ Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  136. def runWith[U](action: (V) ⇒ U): (K) ⇒ Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  137. def sameElements[B >: A](that: GenIterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  138. def sameElements[B >: A](that: GenIterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  139. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  140. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  141. def scanLeft[B, That](z: B)(op: (B, (K, V)) ⇒ B)(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  142. def scanLeft[B, That](z: B)(op: (B, Tuple2[K, V]) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  143. def scanRight[B, That](z: B)(op: ((K, V), B) ⇒ B)(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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.

  144. def scanRight[B, That](z: B)(op: (Tuple2[K, V], B) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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.

  145. def size: Int
  146. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  147. def sizeHint(coll: TraversableLike[_, _]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  148. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  149. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  150. def span(p: ((K, V)) ⇒ Boolean): (WrappedMap[K, V], WrappedMap[K, V])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  151. def span(p: (Tuple2[K, V]) ⇒ Boolean): (collection.Iterable[Tuple2[K, V]], collection.Iterable[Tuple2[K, V]])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  152. def sum[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def sum[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  154. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  155. def takeWhile(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  156. def takeWhile(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  157. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (K, V), Col[(K, V)]]): Col[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  158. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Tuple2[K, V], Col[Tuple2[K, V]]]): Col[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  159. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  160. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def toLocaleString(): String
    Definition Classes
    Object
  162. def toMap[T, U](implicit ev: <:<[(K, V), (T, U)]): collection.immutable.Map[T, U]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  163. def toMap[T, U](implicit ev: <:<[Tuple2[K, V], (T, U)]): collection.immutable.Map[T, U]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def toString(): String
    Definition Classes
    AnyRef → Any
  165. def transform(f: (K, V) ⇒ V): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  166. def transpose[B](implicit asTraversable: ((K, V)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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.

  167. def transpose[B](implicit asTraversable: (Tuple2[K, V]) ⇒ GenTraversableOnce[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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: ((K, V)) ⇒ (A1, A2)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  169. def unzip[A1, A2](implicit asPair: (Tuple2[K, V]) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  170. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) ⇒ (A1, A2, A3)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2], collection.mutable.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  171. def unzip3[A1, A2, A3](implicit asTriple: (Tuple2[K, V]) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  172. def update(key: K, value: V): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike
  173. def updated[V1 >: V](key: K, value: V1): collection.mutable.Map[K, V1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
  174. def valueOf(): scala.Any
    Definition Classes
    Object
  175. def values: collection.Iterable[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

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

  176. def valuesIterator: collection.Iterator[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  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( ... ) @native()
  180. def withDefault(d: (K) ⇒ V): collection.mutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  181. def withDefaultValue(d: V): collection.mutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  182. def withFilter(p: ((K, V)) ⇒ Boolean): FilterMonadic[(K, V), WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → FilterMonadic
  183. def withFilter(p: (Tuple2[K, V]) ⇒ Boolean): FilterMonadic[Tuple2[K, V], collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → FilterMonadic
  184. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  185. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  186. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedMap[K, V], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  187. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  188. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[WrappedMap[K, V], (A1, Int), That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  189. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], (A1, Int), That]): That
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  190. def [B](y: B): (Map[K, V], B)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to ArrowAssoc[Map[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).addString(b, start, sep, end)
    Definition Classes
    MapLike → TraversableOnce
  2. def addString(b: StringBuilder): StringBuilder
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).addString(b)
    Definition Classes
    TraversableOnce
  3. def addString(b: StringBuilder, sep: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).addString(b, sep)
    Definition Classes
    TraversableOnce
  4. def addString(b: StringBuilder): StringBuilder
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).addString(b)
    Definition Classes
    TraversableOnce
  5. def addString(b: StringBuilder, sep: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).addString(b, sep)
    Definition Classes
    TraversableOnce
  6. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  7. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  8. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  9. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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:
    (map: WrappedMap[K, V]).clear()
    Definition Classes
    MapLike → Builder → Growable → Clearable
  10. def clone(): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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:
    (map: WrappedMap[K, V]).clone()
    Definition Classes
    MapLike → Cloneable → AnyRef
  11. def companion: GenericCompanion[collection.mutable.Iterable]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).companion
    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  12. def companion: GenericCompanion[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).companion
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  13. def drop(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).drop(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  14. def drop(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).drop(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  15. def dropRight(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).dropRight(n)
    Definition Classes
    IterableLike
  16. def dropRight(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).dropRight(n)
    Definition Classes
    IterableLike
  17. def equals(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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:
    (map: WrappedMap[K, V]).equals(that)
    Definition Classes
    GenMapLike → Equals → AnyRef → Any
  18. def genericBuilder[B]: Builder[B, collection.mutable.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  19. def genericBuilder[B]: Builder[B, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  20. def grouped(size: Int): collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).grouped(size)
    Definition Classes
    IterableLike
  21. def grouped(size: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).grouped(size)
    Definition Classes
    IterableLike
  22. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  23. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  24. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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:
    (map: WrappedMap[K, V]).hashCode()
    Definition Classes
    GenMapLike → AnyRef → Any
  25. def head: (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  26. def head: Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  27. def headOption: Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).headOption
    Definition Classes
    TraversableLike → GenTraversableLike
  28. def headOption: Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).headOption
    Definition Classes
    TraversableLike → GenTraversableLike
  29. def init: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).init
    Definition Classes
    TraversableLike → GenTraversableLike
  30. def init: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).init
    Definition Classes
    TraversableLike → GenTraversableLike
  31. def inits: collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).inits
    Definition Classes
    TraversableLike
  32. def inits: collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).inits
    Definition Classes
    TraversableLike
  33. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).isEmpty
    Definition Classes
    MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  34. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).isEmpty
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. final def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  36. final def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  37. def iterator: collection.Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).iterator
    Definition Classes
    WrappedMap → MapLike → IterableLike → GenIterableLike
  38. def iterator: collection.Iterator[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).iterator
    Definition Classes
    IterableOps → IterableLike → GenIterableLike
    Annotations
    @inline()
  39. def last: (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).last
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def last: Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).last
    Definition Classes
    TraversableLike → GenTraversableLike
  41. def lastOption: Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  42. def lastOption: Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  43. def mkString: String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def mkString: String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  49. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).nonEmpty
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).nonEmpty
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def par: ParMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).par
    Definition Classes
    Parallelizable
  52. def par: ParIterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).par
    Definition Classes
    Parallelizable
  53. def repr: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def repr: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  55. def seq: collection.mutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).seq
    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  56. def seq: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).seq
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  57. def size: Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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:
    (map: WrappedMap[K, V]).size
    Definition Classes
    WrappedMap → GenTraversableLike → TraversableOnce → GenTraversableOnce
  58. def size: Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (map: IterableOps[Tuple2[K, V]]).size
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def slice(from: Int, until: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).slice(from, until)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  60. def slice(from: Int, until: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).slice(from, until)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  61. def sliding(size: Int, step: Int): collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).sliding(size, step)
    Definition Classes
    IterableLike
  62. def sliding(size: Int): collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).sliding(size)
    Definition Classes
    IterableLike
  63. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).sliding(size, step)
    Definition Classes
    IterableLike
  64. def sliding(size: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).sliding(size)
    Definition Classes
    IterableLike
  65. def splitAt(n: Int): (WrappedMap[K, V], WrappedMap[K, V])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).splitAt(n)
    Definition Classes
    TraversableLike → GenTraversableLike
  66. def splitAt(n: Int): (collection.Iterable[Tuple2[K, V]], collection.Iterable[Tuple2[K, V]])
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).splitAt(n)
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).stringPrefix
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  68. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def tail: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def tail: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def tails: collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).tails
    Definition Classes
    TraversableLike
  72. def tails: collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).tails
    Definition Classes
    TraversableLike
  73. def take(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).take(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  74. def take(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).take(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  75. def takeRight(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).takeRight(n)
    Definition Classes
    IterableLike
  76. def takeRight(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).takeRight(n)
    Definition Classes
    IterableLike
  77. def toBuffer[E >: (K, V)]: Buffer[E]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toBuffer
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  78. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toBuffer
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def toIndexedSeq: collection.immutable.IndexedSeq[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def toIndexedSeq: collection.immutable.IndexedSeq[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def toIterable: collection.Iterable[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  82. def toIterable: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  83. def toIterator: collection.Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  84. def toIterator: collection.Iterator[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  85. def toList: List[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toList
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def toList: List[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toList
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def toSeq: collection.Seq[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toSeq
    Definition Classes
    MapLike → MapLike → TraversableOnce → GenTraversableOnce
  88. def toSeq: collection.Seq[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def toStream: collection.immutable.Stream[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  92. def toStream: collection.immutable.Stream[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  93. def toString(): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap 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:
    (map: WrappedMap[K, V]).toString()
    Definition Classes
    MapLike → TraversableLike → Function1 → AnyRef → Any
  94. def toString(): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (map: IterableOps[Tuple2[K, V]]).toString()
    Definition Classes
    TraversableLike → Any
  95. def toTraversable: collection.Traversable[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  96. def toTraversable: collection.Traversable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  97. def toVector: Vector[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toVector: Vector[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def view(from: Int, until: Int): IterableView[(K, V), WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).view(from, until)
    Definition Classes
    IterableLike → TraversableLike
  100. def view: IterableView[(K, V), WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).view
    Definition Classes
    IterableLike → TraversableLike
  101. def view(from: Int, until: Int): IterableView[Tuple2[K, V], collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).view(from, until)
    Definition Classes
    IterableLike → TraversableLike
  102. def view: IterableView[Tuple2[K, V], collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).view
    Definition Classes
    IterableLike → TraversableLike

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, (K, V)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def /:[B](z: B)(op: (B, Tuple2[K, V]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  3. def :\[B](z: B)(op: ((K, V), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  4. def :\[B](z: B)(op: (Tuple2[K, V], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  5. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] to StringFormat[Map[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

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

Inherited from Iterable[Tuple2[K, V]]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion wrapMap from Map[K, V] to WrappedMap[K, V]

Inherited by implicit conversion iterableOps from Map[K, V] to IterableOps[Tuple2[K, V]]

Inherited by implicit conversion any2stringadd from Map[K, V] to any2stringadd[Map[K, V]]

Inherited by implicit conversion StringFormat from Map[K, V] to StringFormat[Map[K, V]]

Inherited by implicit conversion Ensuring from Map[K, V] to Ensuring[Map[K, V]]

Inherited by implicit conversion ArrowAssoc from Map[K, V] to ArrowAssoc[Map[K, V]]

Ungrouped