Class/Object

scala.scalajs.js

Map

Related Docs: object Map | package js

Permalink

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

ECMAScript 2015

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

K

A type of key.

V

A type of value.

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

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

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

Instance Constructors

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

    Permalink
  2. new Map()

    Permalink

Value Members

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

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

  4. def +[B1 >: B](kv: (K, B1)): collection.mutable.Map[K, B1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike → GenMapLike
    Annotations
    @migration
    Migration

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

  5. def +(other: String): String

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  10. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  11. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  12. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  13. def ++=(xs: collection.TraversableOnce[(K, V)]): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  14. def +=(kv: (K, V)): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → Builder → Growable
  15. def +=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  16. def -(elem1: K, elem2: K, elems: K*): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

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

  17. def -(key: K): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike → Subtractable → GenMapLike
    Annotations
    @migration
    Migration

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

  18. def --(xs: GenTraversableOnce[K]): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

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

  19. def --=(xs: collection.TraversableOnce[K]): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  20. def -=(key: K): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → Shrinkable
  21. def -=(elem1: K, elem2: K, elems: K*): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  22. def ->[B](y: B): (Map[K, V], B)

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

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. final def ==(arg0: scala.Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  28. def aggregate[B](z: ⇒ B)(seqop: (B, (K, V)) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def aggregate[B](z: ⇒ B)(seqop: (B, Tuple2[K, V]) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def andThen[C](k: (V) ⇒ C): PartialFunction[K, C]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  31. def apply(key: K): V

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → Function1 → GenMapLike
  32. def applyOrElse[A1 <: A, B1 >: B](x: A1, default: (A1) ⇒ B1): B1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  33. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  34. def clear(): Unit

    Permalink
  35. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def collect[B, That](pf: PartialFunction[(K, V), B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  37. def collect[B, That](pf: PartialFunction[Tuple2[K, V], B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  38. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  39. def collectFirst[B](pf: PartialFunction[Tuple2[K, V], B]): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  40. def compose[A](g: (A) ⇒ K): (A) ⇒ V

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  41. def contains(key: K): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → GenMapLike
  42. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  46. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  49. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  50. def count(p: ((K, V)) ⇒ Boolean): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def count(p: (Tuple2[K, V]) ⇒ Boolean): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def default(key: K): V

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  53. def delete(key: K): Boolean

    Permalink
  54. def dropWhile(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  55. def dropWhile(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def empty: WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → Map → Map → MapLike
  57. def ensuring(cond: (Map[K, V]) ⇒ Boolean, msg: ⇒ scala.Any): Map[K, V]

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to Ensuring[Map[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  60. def ensuring(cond: Boolean): Map[K, V]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  63. def exists(p: ((K, V)) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  64. def exists(p: (Tuple2[K, V]) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  65. def filter(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  66. def filter(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def filterKeys(p: (K) ⇒ Boolean): collection.Map[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  68. def filterNot(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  69. def filterNot(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def finalize(): Unit

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  72. def find(p: (Tuple2[K, V]) ⇒ Boolean): Option[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  73. def flatMap[B, That](f: ((K, V)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  74. def flatMap[B, That](f: (Tuple2[K, V]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  75. def flatten[B](implicit asTraversable: ((K, V)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  76. def flatten[B](implicit asTraversable: (Tuple2[K, V]) ⇒ GenTraversableOnce[B]): collection.Iterable[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  77. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def foldLeft[B](z: B)(op: (B, Tuple2[K, V]) ⇒ B): B

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  82. def foldRight[B](z: B)(op: (Tuple2[K, V], B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  83. def forall(p: ((K, V)) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  84. def forall(p: (Tuple2[K, V]) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  85. def foreach[U](f: ((K, V)) ⇒ U): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  86. def foreach[U](f: (Tuple2[K, V]) ⇒ U): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  87. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to StringFormat[Map[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  88. def get(key: K): Option[V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → GenMapLike
  89. final def getClass(): Class[_]

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  91. def getOrElseUpdate(key: K, op: ⇒ V): V

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  92. def groupBy[K](f: ((K, V)) ⇒ K): collection.immutable.Map[K, WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  93. def groupBy[K](f: (Tuple2[K, V]) ⇒ K): collection.immutable.Map[K, collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  94. def hasOwnProperty(v: String): Boolean

    Permalink

    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
  95. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  96. def isDefinedAt(key: K): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike → PartialFunction
  97. final def isInstanceOf[T0]: Boolean

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

    Permalink

    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
  99. def jsIterator(): Iterator[Tuple2[K, V]]

    Permalink

    JavaScript Iterator for this Iterable.

    JavaScript Iterator for this Iterable.

    Definition Classes
    MapIterable
    Annotations
    @JSName( symbol = js.Symbol.iterator )
  100. def keySet: collection.Set[K]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  101. def keys: collection.Iterable[K]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike → GenMapLike
    Annotations
    @inline()
  102. def keysIterator: collection.Iterator[K]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  103. def lift: (K) ⇒ Option[V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  104. def map[B, That](f: ((K, V)) ⇒ B)(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  105. def map[B, That](f: (Tuple2[K, V]) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  106. def mapResult[NewTo](f: (WrappedMap[K, V]) ⇒ NewTo): Builder[(K, V), NewTo]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  107. def mapValues[C](f: (V) ⇒ C): collection.Map[K, C]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  108. def max[B >: A](implicit cmp: Ordering[B]): (K, V)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def max[B >: A](implicit cmp: Ordering[B]): Tuple2[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def maxBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def maxBy[B](f: (Tuple2[K, V]) ⇒ B)(implicit cmp: Ordering[B]): Tuple2[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def min[B >: A](implicit cmp: Ordering[B]): (K, V)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def min[B >: A](implicit cmp: Ordering[B]): Tuple2[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def minBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def minBy[B](f: (Tuple2[K, V]) ⇒ B)(implicit cmp: Ordering[B]): Tuple2[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  117. final def notify(): Unit

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  120. def partition(p: ((K, V)) ⇒ Boolean): (WrappedMap[K, V], WrappedMap[K, V])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  121. def partition(p: (Tuple2[K, V]) ⇒ Boolean): (collection.Iterable[Tuple2[K, V]], collection.Iterable[Tuple2[K, V]])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  122. def product[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def product[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def propertyIsEnumerable(v: String): Boolean

    Permalink

    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
  125. def put(key: K, value: V): Option[V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  126. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def reduceLeft[B >: A](op: (B, (K, V)) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  129. def reduceLeft[B >: A](op: (B, Tuple2[K, V]) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  130. def reduceLeftOption[B >: A](op: (B, (K, V)) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def reduceLeftOption[B >: A](op: (B, Tuple2[K, V]) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def reduceRight[B >: A](op: ((K, V), B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  135. def reduceRight[B >: A](op: (Tuple2[K, V], B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  136. def reduceRightOption[B >: A](op: ((K, V), B) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def reduceRightOption[B >: A](op: (Tuple2[K, V], B) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def remove(key: K): Option[V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  139. def result(): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → Builder
  140. def retain(p: (K, V) ⇒ Boolean): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  141. def runWith[U](action: (V) ⇒ U): (K) ⇒ Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  142. def sameElements[B >: A](that: GenIterable[B]): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  143. def sameElements[B >: A](that: GenIterable[B]): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  144. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  145. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  146. def scanLeft[B, That](z: B)(op: (B, (K, V)) ⇒ B)(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  147. def scanLeft[B, That](z: B)(op: (B, Tuple2[K, V]) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  148. def scanRight[B, That](z: B)(op: ((K, V), B) ⇒ B)(implicit bf: CanBuildFrom[WrappedMap[K, V], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

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

  149. def scanRight[B, That](z: B)(op: (Tuple2[K, V], B) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

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

  150. def size: Int

    Permalink
  151. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  152. def sizeHint(coll: TraversableLike[_, _]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  153. def sizeHint(size: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  154. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  155. def span(p: ((K, V)) ⇒ Boolean): (WrappedMap[K, V], WrappedMap[K, V])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  156. def span(p: (Tuple2[K, V]) ⇒ Boolean): (collection.Iterable[Tuple2[K, V]], collection.Iterable[Tuple2[K, V]])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  157. def sum[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def sum[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  160. def takeWhile(p: ((K, V)) ⇒ Boolean): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  161. def takeWhile(p: (Tuple2[K, V]) ⇒ Boolean): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  162. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (K, V), Col[(K, V)]]): Col[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  163. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Tuple2[K, V], Col[Tuple2[K, V]]]): Col[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  164. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  166. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  167. def toMap[T, U](implicit ev: <:<[(K, V), (T, U)]): collection.immutable.Map[T, U]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def toMap[T, U](implicit ev: <:<[Tuple2[K, V], (T, U)]): collection.immutable.Map[T, U]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  169. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  170. def transform(f: (K, V) ⇒ V): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike
  171. def transpose[B](implicit asTraversable: ((K, V)) ⇒ GenTraversableOnce[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  172. def transpose[B](implicit asTraversable: (Tuple2[K, V]) ⇒ GenTraversableOnce[B]): collection.Iterable[collection.Iterable[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  173. def unzip[A1, A2](implicit asPair: ((K, V)) ⇒ (A1, A2)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  174. def unzip[A1, A2](implicit asPair: (Tuple2[K, V]) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  175. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) ⇒ (A1, A2, A3)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2], collection.mutable.Iterable[A3])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  176. def unzip3[A1, A2, A3](implicit asTriple: (Tuple2[K, V]) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    GenericTraversableTemplate
  177. def update(key: K, value: V): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedMap → MapLike
  178. def updated[B1 >: B](key: K, value: B1): collection.mutable.Map[K, B1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → MapLike
  179. def valueOf(): scala.Any

    Permalink
    Definition Classes
    Object
  180. def values: collection.Iterable[V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

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

  181. def valuesIterator: collection.Iterator[V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    MapLike → GenMapLike
  182. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  185. def withDefault(d: (K) ⇒ V): collection.mutable.Map[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  186. def withDefaultValue(d: V): collection.mutable.Map[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Map
  187. def withFilter(p: ((K, V)) ⇒ Boolean): FilterMonadic[(K, V), WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → FilterMonadic
  188. def withFilter(p: (Tuple2[K, V]) ⇒ Boolean): FilterMonadic[Tuple2[K, V], collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → FilterMonadic
  189. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedMap[K, V], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  190. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  191. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedMap[K, V], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  192. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  193. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[WrappedMap[K, V], (A1, Int), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  194. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[collection.Iterable[Tuple2[K, V]], (A1, Int), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  195. def [B](y: B): (Map[K, V], B)

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

Shadowed Implicit Value Members

  1. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).addString(b, start, sep, end)
    Definition Classes
    MapLike → TraversableOnce
  2. def addString(b: StringBuilder): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).addString(b)
    Definition Classes
    TraversableOnce
  3. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).addString(b, sep)
    Definition Classes
    TraversableOnce
  4. def addString(b: StringBuilder): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).addString(b)
    Definition Classes
    TraversableOnce
  5. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).addString(b, sep)
    Definition Classes
    TraversableOnce
  6. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  7. def canEqual(that: scala.Any): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  8. def canEqual(that: scala.Any): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  9. def clear(): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).clear()
    Definition Classes
    MapLike → Builder → Growable → Clearable
  10. def clone(): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).clone()
    Definition Classes
    MapLike → Cloneable → AnyRef
  11. def companion: GenericCompanion[collection.mutable.Iterable]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).companion
    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  12. def companion: GenericCompanion[collection.Iterable]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).companion
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  13. def drop(n: Int): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).drop(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  14. def drop(n: Int): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).drop(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  15. def dropRight(n: Int): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).dropRight(n)
    Definition Classes
    IterableLike
  16. def dropRight(n: Int): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).dropRight(n)
    Definition Classes
    IterableLike
  17. def equals(that: scala.Any): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).equals(that)
    Definition Classes
    GenMapLike → Equals → AnyRef → Any
  18. def genericBuilder[B]: Builder[B, collection.mutable.Iterable[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  19. def genericBuilder[B]: Builder[B, collection.Iterable[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  20. def grouped(size: Int): collection.Iterator[WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).grouped(size)
    Definition Classes
    IterableLike
  21. def grouped(size: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).grouped(size)
    Definition Classes
    IterableLike
  22. def hasDefiniteSize: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  23. def hasDefiniteSize: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  24. def hashCode(): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).hashCode()
    Definition Classes
    GenMapLike → AnyRef → Any
  25. def head: (K, V)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  26. def head: Tuple2[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  27. def headOption: Option[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).headOption
    Definition Classes
    TraversableLike → GenTraversableLike
  28. def headOption: Option[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).headOption
    Definition Classes
    TraversableLike → GenTraversableLike
  29. def init: WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).init
    Definition Classes
    TraversableLike → GenTraversableLike
  30. def init: collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).init
    Definition Classes
    TraversableLike → GenTraversableLike
  31. def inits: collection.Iterator[WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).inits
    Definition Classes
    TraversableLike
  32. def inits: collection.Iterator[collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).inits
    Definition Classes
    TraversableLike
  33. def isEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).isEmpty
    Definition Classes
    MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  34. def isEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).isEmpty
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. final def isTraversableAgain: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  36. final def isTraversableAgain: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  37. def iterator: collection.Iterator[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).iterator
    Definition Classes
    WrappedMap → MapLike → IterableLike → GenIterableLike
  38. def iterator: collection.Iterator[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).iterator
    Definition Classes
    IterableOps → IterableLike → GenIterableLike
    Annotations
    @inline()
  39. def last: (K, V)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).last
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def last: Tuple2[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).last
    Definition Classes
    TraversableLike → GenTraversableLike
  41. def lastOption: Option[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  42. def lastOption: Option[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  43. def mkString: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def mkString(sep: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def mkString(start: String, sep: String, end: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def mkString: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def mkString(sep: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def mkString(start: String, sep: String, end: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  49. def nonEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).nonEmpty
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def nonEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).nonEmpty
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def par: ParMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).par
    Definition Classes
    Parallelizable
  52. def par: ParIterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).par
    Definition Classes
    Parallelizable
  53. def repr: WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def repr: collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  55. def seq: collection.mutable.Map[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).seq
    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  56. def seq: collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).seq
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  57. def size: Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).size
    Definition Classes
    WrappedMap → GenTraversableLike → TraversableOnce → GenTraversableOnce
  58. def size: Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).size
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def slice(from: Int, until: Int): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).slice(from, until)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  60. def slice(from: Int, until: Int): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).slice(from, until)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  61. def sliding(size: Int, step: Int): collection.Iterator[WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).sliding(size, step)
    Definition Classes
    IterableLike
  62. def sliding(size: Int): collection.Iterator[WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).sliding(size)
    Definition Classes
    IterableLike
  63. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).sliding(size, step)
    Definition Classes
    IterableLike
  64. def sliding(size: Int): collection.Iterator[collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).sliding(size)
    Definition Classes
    IterableLike
  65. def splitAt(n: Int): (WrappedMap[K, V], WrappedMap[K, V])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).splitAt(n)
    Definition Classes
    TraversableLike → GenTraversableLike
  66. def splitAt(n: Int): (collection.Iterable[Tuple2[K, V]], collection.Iterable[Tuple2[K, V]])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).splitAt(n)
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def stringPrefix: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).stringPrefix
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  68. def stringPrefix: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def tail: WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def tail: collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def tails: collection.Iterator[WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).tails
    Definition Classes
    TraversableLike
  72. def tails: collection.Iterator[collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).tails
    Definition Classes
    TraversableLike
  73. def take(n: Int): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).take(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  74. def take(n: Int): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).take(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  75. def takeRight(n: Int): WrappedMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).takeRight(n)
    Definition Classes
    IterableLike
  76. def takeRight(n: Int): collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).takeRight(n)
    Definition Classes
    IterableLike
  77. def toBuffer[C >: (A, B)]: Buffer[C]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toBuffer
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  78. def toBuffer[B >: A]: Buffer[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toBuffer
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def toIndexedSeq: collection.immutable.IndexedSeq[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def toIndexedSeq: collection.immutable.IndexedSeq[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def toIterable: collection.Iterable[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  82. def toIterable: collection.Iterable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  83. def toIterator: collection.Iterator[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  84. def toIterator: collection.Iterator[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  85. def toList: List[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toList
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def toList: List[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toList
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def toSeq: collection.Seq[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toSeq
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  88. def toSeq: collection.Seq[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def toSet[B >: A]: collection.immutable.Set[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def toSet[B >: A]: collection.immutable.Set[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def toStream: collection.immutable.Stream[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  92. def toStream: collection.immutable.Stream[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  93. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toString()
    Definition Classes
    MapLike → TraversableLike → Function1 → AnyRef → Any
  94. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toString()
    Definition Classes
    TraversableLike → Any
  95. def toTraversable: collection.Traversable[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  96. def toTraversable: collection.Traversable[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  97. def toVector: Vector[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toVector: Vector[Tuple2[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def view(from: Int, until: Int): IterableView[(K, V), WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).view(from, until)
    Definition Classes
    IterableLike → TraversableLike
  100. def view: IterableView[(K, V), WrappedMap[K, V]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to WrappedMap[K, V] performed by method wrapMap in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: WrappedMap[K, V]).view
    Definition Classes
    IterableLike → TraversableLike
  101. def view(from: Int, until: Int): IterableView[Tuple2[K, V], collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).view(from, until)
    Definition Classes
    IterableLike → TraversableLike
  102. def view: IterableView[Tuple2[K, V], collection.Iterable[Tuple2[K, V]]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Map[K, V] to IterableOps[Tuple2[K, V]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (map: IterableOps[Tuple2[K, V]]).view
    Definition Classes
    IterableLike → TraversableLike

Inherited from Iterable[Tuple2[K, V]]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

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

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

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

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

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

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

Ungrouped