trait MapWrapper[K, +T] extends Map[K, T]

Linear Supertypes
Map[K, T], MapOps[K, T, Map, Map[K, T]], Map[K, T], Equals, MapFactoryDefaults[K, T, [x, y]Map[x, y], [x]Iterable[x]], MapOps[K, T, [_, _]Map[_, _], Map[K, T]], PartialFunction[K, T], (K) => T, Iterable[(K, T)], Iterable[(K, T)], IterableFactoryDefaults[(K, T), [x]Iterable[x]], IterableOps[(K, T), [_]Iterable[_], Map[K, T]], IterableOnceOps[(K, T), [_]Iterable[_], Map[K, T]], IterableOnce[(K, T)], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapWrapper
  2. Map
  3. MapOps
  4. Map
  5. Equals
  6. MapFactoryDefaults
  7. MapOps
  8. PartialFunction
  9. Function1
  10. Iterable
  11. Iterable
  12. IterableFactoryDefaults
  13. IterableOps
  14. IterableOnceOps
  15. IterableOnce
  16. AnyRef
  17. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait GenKeySet extends AnyRef
    Attributes
    protected
    Definition Classes
    MapOps
  2. class ImmutableKeySet extends AbstractSet[K] with scala.collection.immutable.MapOps.GenKeySet with DefaultSerializable
    Attributes
    protected[immutable]
    Definition Classes
    MapOps
  3. class KeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable
    Attributes
    protected
    Definition Classes
    MapOps

Abstract Value Members

  1. abstract def wrapped: Map[K, T]
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +[B1 >: T](kv: (K, B1)): Map[K, B1]
    Definition Classes
    MapWrapper → MapOps → MapOps
  4. def ++[V2 >: T](xs: IterableOnce[(K, V2)]): Map[K, V2]
    Definition Classes
    MapOps
  5. final def ++[B >: (K, T)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  6. final def -(key: K): Map[K, T]
    Definition Classes
    MapOps
    Annotations
    @inline()
  7. final def --(keys: IterableOnce[K]): Map[K, T]
    Definition Classes
    MapOps → MapOps
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def addString(sb: StringBuilder, start: String, sep: String, end: String): sb.type
    Definition Classes
    MapOps → IterableOnceOps
  10. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  12. def andThen[C](k: PartialFunction[T, C]): PartialFunction[K, C]
    Definition Classes
    PartialFunction
  13. def andThen[C](k: (T) => C): PartialFunction[K, C]
    Definition Classes
    PartialFunction → Function1
  14. def apply(key: K): T
    Definition Classes
    MapOps → Function1
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  15. def applyOrElse[K1 <: K, V1 >: T](x: K1, default: (K1) => V1): V1
    Definition Classes
    MapOps → PartialFunction
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def canEqual(that: Any): Boolean
    Definition Classes
    Map → Equals
  18. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  20. final def coll: MapWrapper.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  21. def collect[K2, V2](pf: PartialFunction[(K, T), (K2, V2)]): Map[K2, V2]
    Definition Classes
    MapOps
  22. def collect[B](pf: PartialFunction[(K, T), B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  23. def collectFirst[B](pf: PartialFunction[(K, T), B]): Option[B]
    Definition Classes
    IterableOnceOps
  24. def compose[R](k: PartialFunction[R, K]): PartialFunction[R, T]
    Definition Classes
    PartialFunction
  25. def compose[A](g: (A) => K): (A) => T
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  26. def concat[V2 >: T](suffix: IterableOnce[(K, V2)]): Map[K, V2]
    Definition Classes
    MapOps
  27. def concat[B >: (K, T)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  28. def contains(key: K): Boolean
    Definition Classes
    MapOps
  29. def copyToArray[B >: (K, T)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  30. def copyToArray[B >: (K, T)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  31. def copyToArray[B >: (K, T)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  32. def corresponds[B](that: IterableOnce[B])(p: ((K, T), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  33. def count(p: ((K, T)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  34. def default(key: K): T
    Definition Classes
    MapOps
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  35. def drop(n: Int): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def dropRight(n: Int): Map[K, T]
    Definition Classes
    IterableOps
  37. def dropWhile(p: ((K, T)) => Boolean): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  38. def elementWise: ElementWiseExtractor[K, T]
    Definition Classes
    PartialFunction
  39. def empty: Map[K, T]
    Definition Classes
    MapFactoryDefaults → IterableOps
  40. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. def equals(o: Any): Boolean
    Definition Classes
    Map → Equals → AnyRef → Any
  42. def exists(p: ((K, T)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def filter(pred: ((K, T)) => Boolean): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  44. def filterNot(pred: ((K, T)) => Boolean): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  45. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  46. def find(p: ((K, T)) => Boolean): Option[(K, T)]
    Definition Classes
    IterableOnceOps
  47. def flatMap[K2, V2](f: ((K, T)) => IterableOnce[(K2, V2)]): Map[K2, V2]
    Definition Classes
    MapOps
  48. def flatMap[B](f: ((K, T)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def flatten[B](implicit asIterable: ((K, T)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def fold[A1 >: (K, T)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  51. def foldLeft[B](z: B)(op: (B, (K, T)) => B): B
    Definition Classes
    IterableOnceOps
  52. def foldRight[B](z: B)(op: ((K, T), B) => B): B
    Definition Classes
    IterableOnceOps
  53. def forall(p: ((K, T)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  54. def foreach[U](f: ((K, T)) => U): Unit
    Definition Classes
    IterableOnceOps
  55. def foreachEntry[U](f: (K, T) => U): Unit
    Definition Classes
    MapOps
  56. def fromSpecific(coll: IterableOnce[(K, T)]): Map[K, T]
    Attributes
    protected
    Definition Classes
    MapFactoryDefaults → IterableOps
  57. def get(key: K): Option[T]
    Definition Classes
    MapWrapper → MapOps
  58. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  59. def getOrElse[V1 >: T](key: K, default: => V1): V1
    Definition Classes
    MapOps
  60. def groupBy[K](f: ((K, T)) => K): Map[K, Map[K, T]]
    Definition Classes
    IterableOps
  61. def groupMap[K, B](key: ((K, T)) => K)(f: ((K, T)) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  62. def groupMapReduce[K, B](key: ((K, T)) => K)(f: ((K, T)) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  63. def grouped(size: Int): Iterator[Map[K, T]]
    Definition Classes
    IterableOps
  64. def hashCode(): Int
    Definition Classes
    Map → AnyRef → Any
  65. def head: (K, T)
    Definition Classes
    IterableOps
  66. def headOption: Option[(K, T)]
    Definition Classes
    IterableOps
  67. def init: Map[K, T]
    Definition Classes
    IterableOps
  68. def inits: Iterator[Map[K, T]]
    Definition Classes
    IterableOps
  69. def isDefinedAt(key: K): Boolean
    Definition Classes
    MapOps → PartialFunction
  70. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  71. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  72. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  73. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  74. def iterator: Iterator[(K, T)]
    Definition Classes
    MapWrapper → IterableOnce
  75. def keySet: Set[K]
    Definition Classes
    MapOps → MapOps
  76. def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[K, S]): S
    Definition Classes
    MapOps
  77. def keys: Iterable[K]
    Definition Classes
    MapOps
    Annotations
    @deprecatedOverriding()
  78. def keysIterator: Iterator[K]
    Definition Classes
    MapOps
  79. def knownSize: Int
    Definition Classes
    IterableOnce
  80. def last: (K, T)
    Definition Classes
    IterableOps
  81. def lastOption: Option[(K, T)]
    Definition Classes
    IterableOps
  82. def lazyZip[B](that: Iterable[B]): LazyZip2[(K, T), B, MapWrapper.this.type]
    Definition Classes
    Iterable
  83. def lift: (K) => Option[T]
    Definition Classes
    PartialFunction
  84. def map[K2, V2](f: ((K, T)) => (K2, V2)): Map[K2, V2]
    Definition Classes
    MapOps
  85. def map[B](f: ((K, T)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  86. def mapFactory: MapFactory[Map]
    Definition Classes
    Map → Map → MapOps
  87. final def mapFromIterable[K2, V2](it: Iterable[(K2, V2)]): Map[K2, V2]
    Attributes
    protected
    Definition Classes
    MapOps
    Annotations
    @inline()
  88. def max[B >: (K, T)](implicit ord: Ordering[B]): (K, T)
    Definition Classes
    IterableOnceOps
  89. def maxBy[B](f: ((K, T)) => B)(implicit ord: Ordering[B]): (K, T)
    Definition Classes
    IterableOnceOps
  90. def maxByOption[B](f: ((K, T)) => B)(implicit ord: Ordering[B]): Option[(K, T)]
    Definition Classes
    IterableOnceOps
  91. def maxOption[B >: (K, T)](implicit ord: Ordering[B]): Option[(K, T)]
    Definition Classes
    IterableOnceOps
  92. def min[B >: (K, T)](implicit ord: Ordering[B]): (K, T)
    Definition Classes
    IterableOnceOps
  93. def minBy[B](f: ((K, T)) => B)(implicit ord: Ordering[B]): (K, T)
    Definition Classes
    IterableOnceOps
  94. def minByOption[B](f: ((K, T)) => B)(implicit ord: Ordering[B]): Option[(K, T)]
    Definition Classes
    IterableOnceOps
  95. def minOption[B >: (K, T)](implicit ord: Ordering[B]): Option[(K, T)]
    Definition Classes
    IterableOnceOps
  96. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  97. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  98. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  99. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  100. def newSpecificBuilder: Builder[(K, T), Map[K, T]]
    Attributes
    protected
    Definition Classes
    MapFactoryDefaults → IterableOps
  101. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  102. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  103. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  104. def orElse[A1 <: K, B1 >: T](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  105. def partition(p: ((K, T)) => Boolean): (Map[K, T], Map[K, T])
    Definition Classes
    IterableOps
  106. def partitionMap[A1, A2](f: ((K, T)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  107. def product[B >: (K, T)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  108. def reduce[B >: (K, T)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  109. def reduceLeft[B >: (K, T)](op: (B, (K, T)) => B): B
    Definition Classes
    IterableOnceOps
  110. def reduceLeftOption[B >: (K, T)](op: (B, (K, T)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  111. def reduceOption[B >: (K, T)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  112. def reduceRight[B >: (K, T)](op: ((K, T), B) => B): B
    Definition Classes
    IterableOnceOps
  113. def reduceRightOption[B >: (K, T)](op: ((K, T), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  114. def removed(key: K): Map[K, T]
    Definition Classes
    MapWrapper → MapOps
  115. def removedAll(keys: IterableOnce[K]): Map[K, T]
    Definition Classes
    MapOps
  116. def reversed: Iterable[(K, T)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  117. def runWith[U](action: (T) => U): (K) => Boolean
    Definition Classes
    PartialFunction
  118. def scan[B >: (K, T)](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  119. def scanLeft[B](z: B)(op: (B, (K, T)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  120. def scanRight[B](z: B)(op: ((K, T), B) => B): Iterable[B]
    Definition Classes
    IterableOps
  121. def size: Int
    Definition Classes
    IterableOnceOps
  122. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  123. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  124. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  125. def slice(from: Int, until: Int): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  126. def sliding(size: Int, step: Int): Iterator[Map[K, T]]
    Definition Classes
    IterableOps
  127. def sliding(size: Int): Iterator[Map[K, T]]
    Definition Classes
    IterableOps
  128. def span(p: ((K, T)) => Boolean): (Map[K, T], Map[K, T])
    Definition Classes
    IterableOps → IterableOnceOps
  129. def splitAt(n: Int): (Map[K, T], Map[K, T])
    Definition Classes
    IterableOps → IterableOnceOps
  130. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, T), S]): S
    Definition Classes
    IterableOnce
  131. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Map → Iterable
  132. def sum[B >: (K, T)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  133. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  134. def tail: Map[K, T]
    Definition Classes
    IterableOps
  135. def tails: Iterator[Map[K, T]]
    Definition Classes
    IterableOps
  136. def take(n: Int): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  137. def takeRight(n: Int): Map[K, T]
    Definition Classes
    IterableOps
  138. def takeWhile(p: ((K, T)) => Boolean): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def tapEach[U](f: ((K, T)) => U): Map[K, T]
    Definition Classes
    IterableOps → IterableOnceOps
  140. def to[C1](factory: Factory[(K, T), C1]): C1
    Definition Classes
    IterableOnceOps
  141. def toArray[B >: (K, T)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  142. final def toBuffer[B >: (K, T)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  143. def toIndexedSeq: IndexedSeq[(K, T)]
    Definition Classes
    IterableOnceOps
  144. def toList: List[(K, T)]
    Definition Classes
    IterableOnceOps
  145. final def toMap[K2, V2](implicit ev: <:<[(K, T), (K2, V2)]): Map[K2, V2]
    Definition Classes
    Map → IterableOnceOps
  146. def toSeq: Seq[(K, T)]
    Definition Classes
    IterableOnceOps
  147. def toSet[B >: (K, T)]: Set[B]
    Definition Classes
    IterableOnceOps
  148. def toString(): String
    Definition Classes
    Map → Function1 → Iterable → AnyRef → Any
  149. def toVector: Vector[(K, T)]
    Definition Classes
    IterableOnceOps
  150. def transform[W](f: (K, T) => W): Map[K, W]
    Definition Classes
    MapOps
  151. def transpose[B](implicit asIterable: ((K, T)) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  152. def unapply(a: K): Option[T]
    Definition Classes
    PartialFunction
  153. def unzip[A1, A2](implicit asPair: ((K, T)) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  154. def unzip3[A1, A2, A3](implicit asTriple: ((K, T)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  155. def updated[V1 >: T](key: K, value: V1): Map[K, V1]
    Definition Classes
    MapWrapper → MapOps
  156. def updatedWith[V1 >: T](key: K)(remappingFunction: (Option[T]) => Option[V1]): Map[K, V1]
    Definition Classes
    MapOps
  157. def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[T, S]): S
    Definition Classes
    MapOps
  158. def values: Iterable[T]
    Definition Classes
    MapOps
  159. def valuesIterator: Iterator[T]
    Definition Classes
    MapOps
  160. def view: MapView[K, T]
    Definition Classes
    MapOps → IterableOps
  161. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  162. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  163. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  164. def withDefault[V1 >: T](d: (K) => V1): Map[K, V1]
    Definition Classes
    Map
  165. def withDefaultValue[V1 >: T](d: V1): Map[K, V1]
    Definition Classes
    Map
  166. def withFilter(p: ((K, T)) => Boolean): WithFilter[K, T, [x]Iterable[x], [x, y]Map[x, y]]
    Definition Classes
    MapFactoryDefaults → IterableOps
  167. def zip[B](that: IterableOnce[B]): Iterable[((K, T), B)]
    Definition Classes
    IterableOps
  168. def zipAll[A1 >: (K, T), B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  169. def zipWithIndex: Iterable[((K, T), Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def +[V1 >: T](elem1: (K, V1), elem2: (K, V1), elems: (K, V1)*): Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  2. def ++:[V1 >: T](that: IterableOnce[(K, V1)]): Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  3. def ++:[B >: (K, T)](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  4. def -(key1: K, key2: K, keys: K*): Map[K, T]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -- with an explicit collection

  5. final def /:[B](z: B)(op: (B, (K, T)) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  6. final def :\[B](z: B)(op: ((K, T), B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  7. def aggregate[B](z: => B)(seqop: (B, (K, T)) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

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

  8. def companion: IterableFactory[[_]Iterable[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. final def copyToBuffer[B >: (K, T)](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  10. def filterKeys(p: (K) => Boolean): MapView[K, T]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  11. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

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

  12. def mapValues[W](f: (T) => W): MapView[K, W]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  13. final def repr: Map[K, T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  14. def seq: MapWrapper.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  15. final def toIterable: MapWrapper.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

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

  16. final def toIterator: Iterator[(K, T)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  17. final def toStream: Stream[(K, T)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  18. final def toTraversable: Traversable[(K, T)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  19. def view(from: Int, until: Int): View[(K, T)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

Inherited from Map[K, T]

Inherited from MapOps[K, T, Map, Map[K, T]]

Inherited from Map[K, T]

Inherited from Equals

Inherited from MapFactoryDefaults[K, T, [x, y]Map[x, y], [x]Iterable[x]]

Inherited from MapOps[K, T, [_, _]Map[_, _], Map[K, T]]

Inherited from PartialFunction[K, T]

Inherited from (K) => T

Inherited from Iterable[(K, T)]

Inherited from Iterable[(K, T)]

Inherited from IterableFactoryDefaults[(K, T), [x]Iterable[x]]

Inherited from IterableOps[(K, T), [_]Iterable[_], Map[K, T]]

Inherited from IterableOnceOps[(K, T), [_]Iterable[_], Map[K, T]]

Inherited from IterableOnce[(K, T)]

Inherited from AnyRef

Inherited from Any

Ungrouped