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
@native() @JSGlobal() @JSType()
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. Protected

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 +(other: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toany2stringadd[Map[K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[V2 >: V](xs: collection.IterableOnce[(K, V2)]): collection.mutable.Map[K, V2]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  5. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  6. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++=(elems: collection.IterableOnce[(K, V)]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def +=(elem: (K, V)): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
    Annotations
    @inline()
  9. final def --=(xs: collection.IterableOnce[K]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. final def -=(elem: K): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. def ->[B](y: B): (Map[K, V], B)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toArrowAssoc[Map[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  12. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def addAll(elems: collection.IterableOnce[(K, V)]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  14. def addOne(kv: (K, V)): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → Growable
  15. def andThen[C](k: PartialFunction[V, C]): PartialFunction[K, C]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  16. def andThen[C](k: (V) => C): PartialFunction[K, C]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  17. def apply(key: K): V
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps → Function1
  18. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps → PartialFunction
  19. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  20. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map → Equals
  21. def clear(): Unit
  22. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  23. def collect[K2, V2](pf: PartialFunction[(K, V), (K2, V2)]): collection.mutable.Map[K2, V2]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  24. def collect[B](pf: PartialFunction[(K, V), B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  25. def collect[B](pf: PartialFunction[Tuple2[K, V], B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  26. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  27. def collectFirst[B](pf: PartialFunction[Tuple2[K, V], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  28. def compose[R](k: PartialFunction[R, K]): PartialFunction[R, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  29. def compose[A](g: (A) => K): (A) => V
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  30. def concat[V2 >: V](suffix: collection.IterableOnce[(K, V2)]): collection.mutable.Map[K, V2]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  31. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  32. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  33. def contains(key: K): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps
  34. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  35. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  36. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  37. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  38. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  39. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  40. def corresponds[B](that: collection.IterableOnce[B])(p: ((K, V), B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  41. def corresponds[B](that: collection.IterableOnce[B])(p: (Tuple2[K, V], B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  42. def count(p: ((K, V)) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  43. def count(p: (Tuple2[K, V]) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  44. def default(key: K): V
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  45. def delete(key: K): Boolean
  46. def dropWhile(p: ((K, V)) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  47. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  48. def elementWise: ElementWiseExtractor[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  49. 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] toEnsuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  50. def ensuring(cond: (Map[K, V]) => Boolean): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toEnsuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  51. def ensuring(cond: Boolean, msg: => scala.Any): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toEnsuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  52. def ensuring(cond: Boolean): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toEnsuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  53. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  54. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  55. def exists(p: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  56. def exists(p: (Tuple2[K, V]) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  57. def filter(pred: ((K, V)) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  58. def filter(pred: (Tuple2[K, V]) => Boolean): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  59. def filterInPlace(p: (K, V) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  60. def filterNot(pred: ((K, V)) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  61. def filterNot(pred: (Tuple2[K, V]) => Boolean): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  62. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  63. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  64. def find(p: (Tuple2[K, V]) => Boolean): Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  65. def flatMap[K2, V2](f: ((K, V)) => collection.IterableOnce[(K2, V2)]): collection.mutable.Map[K2, V2]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  66. def flatMap[B](f: ((K, V)) => collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  67. def flatMap[B](f: (Tuple2[K, V]) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  68. def flatten[B](implicit asIterable: ((K, V)) => collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  69. def flatten[B](implicit asIterable: (Tuple2[K, V]) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  70. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  71. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  72. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  73. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  74. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  75. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  76. def forall(p: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  77. def forall(p: (Tuple2[K, V]) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  78. def foreach[U](f: ((K, V)) => U): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  79. def foreach[U](f: (Tuple2[K, V]) => U): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  80. def foreachEntry[U](f: (K, V) => U): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  81. def get(key: K): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps
  82. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  83. def getOrElse[V1 >: V](key: K, default: => V1): V1
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps
  84. def getOrElseUpdate(key: K, op: => V): V
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps
  85. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  86. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  87. def groupMap[K, B](key: ((K, V)) => K)(f: ((K, V)) => B): collection.immutable.Map[K, collection.mutable.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  88. def groupMap[K, B](key: (Tuple2[K, V]) => K)(f: (Tuple2[K, V]) => B): collection.immutable.Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  89. def groupMapReduce[K, B](key: ((K, V)) => K)(f: ((K, V)) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  90. def groupMapReduce[K, B](key: (Tuple2[K, V]) => K)(f: (Tuple2[K, V]) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  91. 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
  92. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  93. def isDefinedAt(key: K): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps → PartialFunction
  94. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  95. 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
  96. 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)
  97. def keySet: collection.Set[K]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  98. def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[K, S]): S
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  99. def keys: collection.Iterable[K]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps
    Annotations
    @inline()
  100. def keysIterator: collection.Iterator[K]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  101. def lift: (K) => Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  102. def map[K2, V2](f: ((K, V)) => (K2, V2)): collection.mutable.Map[K2, V2]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  103. def map[B](f: ((K, V)) => B): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  104. def map[B](f: (Tuple2[K, V]) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  105. def mapFactory: MapFactory[collection.mutable.Map]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map → Map → MapOps
  106. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  107. def mapValuesInPlace(f: (K, V) => V): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  108. def max[B >: A](implicit ord: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  109. def max[B >: A](implicit ord: math.Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  110. def maxBy[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  111. def maxBy[B](f: (Tuple2[K, V]) => B)(implicit ord: math.Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  112. def maxByOption[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  113. def maxByOption[B](f: (Tuple2[K, V]) => B)(implicit ord: math.Ordering[B]): Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  114. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  115. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  116. def min[B >: A](implicit ord: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  117. def min[B >: A](implicit ord: math.Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  118. def minBy[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  119. def minBy[B](f: (Tuple2[K, V]) => B)(implicit ord: math.Ordering[B]): Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  120. def minByOption[B](f: ((K, V)) => B)(implicit ord: math.Ordering[B]): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  121. def minByOption[B](f: (Tuple2[K, V]) => B)(implicit ord: math.Ordering[B]): Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  122. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  123. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  124. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  125. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  126. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  127. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  128. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  129. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  130. def partitionMap[A1, A2](f: ((K, V)) => Either[A1, A2]): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  131. def partitionMap[A1, A2](f: (Tuple2[K, V]) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  132. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  133. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  134. 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
  135. def put(key: K, value: V): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  136. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  137. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  138. def reduceLeft[B >: A](op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  139. def reduceLeft[B >: A](op: (B, Tuple2[K, V]) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  140. def reduceLeftOption[B >: A](op: (B, (K, V)) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  141. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  142. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  143. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  144. def reduceRight[B >: A](op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  145. def reduceRight[B >: A](op: (Tuple2[K, V], B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  146. def reduceRightOption[B >: A](op: ((K, V), B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  147. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  148. def remove(key: K): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  149. def result(): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps → Builder
  150. def runWith[U](action: (V) => U): (K) => Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  151. def scan[B >: A](z: B)(op: (B, B) => B): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  152. def scan[B >: A](z: B)(op: (B, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  153. def scanLeft[B](z: B)(op: (B, (K, V)) => B): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  154. def scanLeft[B](z: B)(op: (B, Tuple2[K, V]) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  155. def scanRight[B](z: B)(op: ((K, V), B) => B): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  156. def scanRight[B](z: B)(op: (Tuple2[K, V], B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  157. def size: Int
  158. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  159. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  160. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  161. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  162. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  163. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, V), S]): S
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnce
  164. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Tuple2[K, V], S]): S
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnce
  165. def subtractAll(xs: collection.IterableOnce[K]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  166. def subtractOne(key: K): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → Shrinkable
  167. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  168. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  169. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  170. def takeWhile(p: ((K, V)) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  171. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  172. def tapEach[U](f: ((K, V)) => U): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  173. def tapEach[U](f: (Tuple2[K, V]) => U): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  174. def to[C1](factory: Factory[(K, V), C1]): C1
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  175. def to[C1](factory: Factory[Tuple2[K, V], C1]): C1
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  176. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  177. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  178. def toLocaleString(): String
    Definition Classes
    Object
  179. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  180. def toMap[K, V](implicit ev: <:<[Tuple2[K, V], (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  181. def toString(): String
    Definition Classes
    AnyRef → Any
  182. def transpose[B](implicit asIterable: ((K, V)) => collection.Iterable[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  183. def transpose[B](implicit asIterable: (Tuple2[K, V]) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  184. def unapply(a: K): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  185. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  186. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  187. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  188. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  189. def update(key: K, value: V): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapOps
  190. def updateWith(key: K)(remappingFunction: (Option[V]) => Option[V]): Option[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  191. def valueOf(): scala.Any
    Definition Classes
    Object
  192. def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  193. def values: collection.Iterable[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  194. def valuesIterator: collection.Iterator[V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
  195. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  196. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  197. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  198. def withDefault(d: (K) => V): collection.mutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  199. def withDefaultValue(d: V): collection.mutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  200. def withFilter(p: ((K, V)) => Boolean): WithFilter[K, V, [x]collection.mutable.Iterable[x], [x, y]collection.mutable.Map[x, y]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapFactoryDefaults → IterableOps
  201. def withFilter(p: (Tuple2[K, V]) => Boolean): WithFilter[Tuple2[K, V], collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  202. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.mutable.Iterable[(A1, B)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  203. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps

Shadowed Implicit Value Members

  1. def addString(sb: collection.mutable.StringBuilder, start: String, sep: String, end: String): sb.type
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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(sb, start, sep, end)
    Definition Classes
    MapOps → IterableOnceOps
  2. final def addString(b: collection.mutable.StringBuilder): b.type
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @inline()
  3. final def addString(b: collection.mutable.StringBuilder, sep: String): b.type
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @inline()
  4. final def addString(b: collection.mutable.StringBuilder): b.type
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @inline()
  5. final def addString(b: collection.mutable.StringBuilder, sep: String): b.type
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @inline()
  6. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): b.type
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  7. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    MapOps → Builder → Clearable
  8. def clone(): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    MapOps → Cloneable → AnyRef
  9. def drop(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps → IterableOnceOps
  10. def drop(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps → IterableOnceOps
  11. def dropRight(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  12. def dropRight(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  13. def empty: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).empty
    Definition Classes
    WrappedMap → MapFactoryDefaults → IterableFactoryDefaults → IterableOps
  14. def empty: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).empty
    Definition Classes
    IterableFactoryDefaults → IterableOps
  15. def equals(o: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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(o)
    Definition Classes
    Map → Equals → AnyRef → Any
  16. def grouped(size: Int): collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  17. def grouped(size: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  18. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    Map → AnyRef → Any
  19. def head: (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  20. def head: Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  21. def headOption: Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  22. def headOption: Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  23. def init: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  24. def init: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  25. def inits: collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  26. def inits: collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  27. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  28. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  29. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps → IterableOnceOps
  30. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps → IterableOnceOps
  31. def iterableFactory: IterableFactory[collection.mutable.Iterable]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).iterableFactory
    Definition Classes
    Iterable → Iterable → IterableOps
  32. def iterableFactory: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).iterableFactory
    Definition Classes
    Iterable → IterableOps
  33. def iterator: collection.Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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 → IterableOnce
  34. def iterator: collection.Iterator[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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 → IterableOnce
    Annotations
    @inline()
  35. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).knownSize
    Definition Classes
    MapOps → Growable → IterableOnce
  36. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).knownSize
    Definition Classes
    IterableOnce
  37. def last: (K, V)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  38. def last: Tuple2[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  39. def lastOption: Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  40. def lastOption: Option[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  41. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[(K, V),B,_1.type]) forSome {val _1: WrappedMap[K, V]}
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).lazyZip
    Definition Classes
    Iterable
  42. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[scala.scalajs.js.Tuple2[K,V],B,_1.type]) forSome {val _1: IterableOps[Tuple2[K, V]]}
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).lazyZip
    Definition Classes
    Iterable
  43. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @inline()
  44. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @inline()
  45. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  46. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @inline()
  47. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @inline()
  48. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  49. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  50. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  51. def size: Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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 → IterableOnceOps
  52. def size: Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  53. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).sizeCompare(that)
    Definition Classes
    IterableOps
  54. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  55. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).sizeCompare(that)
    Definition Classes
    IterableOps
  56. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  57. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  58. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  59. def slice(from: Int, until: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps → IterableOnceOps
  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] toIterableOps[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
    IterableOps → IterableOnceOps
  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] toWrappedMap[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
    IterableOps
  62. def sliding(size: Int): collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  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] toIterableOps[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
    IterableOps
  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] toIterableOps[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
    IterableOps
  65. def splitAt(n: Int): (WrappedMap[K, V], WrappedMap[K, V])
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps → IterableOnceOps
  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] toIterableOps[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
    IterableOps → IterableOnceOps
  67. def tail: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  68. def tail: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  69. def tails: collection.Iterator[WrappedMap[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  70. def tails: collection.Iterator[collection.Iterable[Tuple2[K, V]]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  71. def take(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps → IterableOnceOps
  72. def take(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps → IterableOnceOps
  73. def takeRight(n: Int): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
  74. def takeRight(n: Int): collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  75. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @inline()
  76. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @inline()
  77. def toIndexedSeq: collection.immutable.IndexedSeq[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  78. def toIndexedSeq: collection.immutable.IndexedSeq[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  79. def toList: collection.immutable.List[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  80. def toList: collection.immutable.List[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  81. def toSeq: collection.immutable.Seq[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  82. def toSeq: collection.immutable.Seq[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  83. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  84. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  85. def toString(): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    Map → Function1 → Iterable → AnyRef → Any
  86. def toString(): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    Iterable → AnyRef → Any
  87. def toVector: collection.immutable.Vector[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
  88. def toVector: collection.immutable.Vector[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
  89. def view: MapView[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    MapOps → IterableOps
  90. def view: View[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
  91. def zip[B](that: collection.IterableOnce[B]): collection.mutable.Iterable[((K, V), B)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).zip(that)
    Definition Classes
    IterableOps
  92. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(Tuple2[K, V], B)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).zip(that)
    Definition Classes
    IterableOps
  93. def zipWithIndex: collection.mutable.Iterable[((K, V), Int)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps
  94. def zipWithIndex: collection.Iterable[(Tuple2[K, V], Int)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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]]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def +[V1 >: V](kv: (K, V1)): collection.mutable.Map[K, V1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map or fall back to Map.concat.

  3. def ++:[V1 >: V](that: collection.IterableOnce[(K, V1)]): collection.mutable.Map[K, V1]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  4. def ++:[B >: A](that: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  5. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  6. final 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  7. final def -(key1: K, key2: K, keys: K*): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -- or removeAll on an immutable Map

  8. final def -(key: K): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use - or remove on an immutable Map

  9. def --(keys: collection.IterableOnce[K]): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map.

  10. def -=(elem1: K, elem2: K, elems: K*): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

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

  11. final def /:[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  12. final def /:[B](z: B)(op: (B, Tuple2[K, V]) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  13. final def :\[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  14. final def :\[B](z: B)(op: (Tuple2[K, V], B) => B): B
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  15. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  16. 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] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  17. def companion: IterableFactory[[_]collection.mutable.Iterable[_]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  18. def companion: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  19. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  20. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  21. def filterKeys(p: (K) => Boolean): MapView[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.filterKeys(f). A future version will include a strict version of this method (for now, .view.filterKeys(p).toMap).

  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Map[K, V] toStringFormat[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.

  23. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  24. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  25. def mapValues[W](f: (V) => W): MapView[K, W]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.mapValues(f). A future version will include a strict version of this method (for now, .view.mapValues(f).toMap).

  26. final def repr: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  27. final def repr: collection.Iterable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  28. final def retain(p: (K, V) => Boolean): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  29. def seq: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  30. def seq: IterableOps[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  31. final def toIterable: WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

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

  32. final def toIterable: IterableOps[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

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

  33. final def toIterator: collection.Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  34. final def toIterator: collection.Iterator[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  35. final def toStream: collection.immutable.Stream[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  36. final def toStream: collection.immutable.Stream[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  37. final def toTraversable: collection.Traversable[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  38. final def toTraversable: collection.Traversable[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  39. final def transform(f: (K, V) => V): WrappedMap[K, V]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapValuesInPlace instead

  40. 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] toWrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use m.clone().addOne((k,v)) instead of m.updated(k, v)

  41. def view(from: Int, until: Int): View[(K, V)]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toWrappedMap[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
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  42. def view(from: Int, until: Int): View[Tuple2[K, V]]
    Implicit
    This member is added by an implicit conversion from Map[K, V] toIterableOps[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
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  43. def [B](y: B): (Map[K, V], B)
    Implicit
    This member is added by an implicit conversion from Map[K, V] toArrowAssoc[Map[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Iterable[Tuple2[K, V]]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

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

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

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

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

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

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

Ungrouped