Packages

c

scala.swing

MapWrapper

abstract class MapWrapper[K, V] extends Map[K, V]

Default partial implementation for mutable map adapters.

Linear Supertypes
Map[K, V], MapOps[K, V, Map, Map[K, V]], Shrinkable[K], Builder[(K, V), Map[K, V]], Growable[(K, V)], Clearable, collection.mutable.Cloneable[Map[K, V]], java.lang.Cloneable, Map[K, V], Equals, MapFactoryDefaults[K, V, [x, y]Map[x, y], [x]collection.mutable.Iterable[x]], MapOps[K, V, [_, _]Map[_, _], Map[K, V]], PartialFunction[K, V], (K) => V, collection.mutable.Iterable[(K, V)], collection.Iterable[(K, V)], IterableFactoryDefaults[(K, V), [x]collection.mutable.Iterable[x]], IterableOps[(K, V), [_]collection.mutable.Iterable[_], Map[K, V]], IterableOnceOps[(K, V), [_]collection.mutable.Iterable[_], Map[K, V]], collection.IterableOnce[(K, V)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapWrapper
  2. Map
  3. MapOps
  4. Shrinkable
  5. Builder
  6. Growable
  7. Clearable
  8. Cloneable
  9. Cloneable
  10. Map
  11. Equals
  12. MapFactoryDefaults
  13. MapOps
  14. PartialFunction
  15. Function1
  16. Iterable
  17. Iterable
  18. IterableFactoryDefaults
  19. IterableOps
  20. IterableOnceOps
  21. IterableOnce
  22. AnyRef
  23. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MapWrapper()

Type Members

  1. trait GenKeySet extends AnyRef
    Attributes
    protected
    Definition Classes
    MapOps
  2. class KeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable
    Attributes
    protected
    Definition Classes
    MapOps
  3. type MoreElem[+B] = collection.IterableOnce[B]

    The collection passed to addAll and subtractAll

Abstract Value Members

  1. abstract def addOne(elem: (K, V)): MapWrapper.this.type
    Definition Classes
    Growable
  2. abstract def get(key: K): Option[V]
    Definition Classes
    MapOps
  3. abstract def iterator: collection.Iterator[(K, V)]
    Definition Classes
    IterableOnce
  4. abstract def subtractOne(elem: K): MapWrapper.this.type
    Definition Classes
    Shrinkable

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++[V2 >: V](xs: collection.IterableOnce[(K, V2)]): Map[K, V2]
    Definition Classes
    MapOps
  4. final def ++[B >: (K, V)](suffix: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ++=(xs: collection.IterableOnce[(K, V)]): MapWrapper.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  6. final def +=(elem: (K, V)): MapWrapper.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  7. final def --=(xs: collection.IterableOnce[K]): MapWrapper.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  8. final def -=(elem: K): MapWrapper.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def addAll(xs: collection.IterableOnce[(K, V)]): MapWrapper.this.type
    Definition Classes
    Growable
  11. def addString(sb: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Definition Classes
    MapOps → IterableOnceOps
  12. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  13. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  14. def andThen[C](k: PartialFunction[V, C]): PartialFunction[K, C]
    Definition Classes
    PartialFunction
  15. def andThen[C](k: (V) => C): PartialFunction[K, C]
    Definition Classes
    PartialFunction → Function1
  16. def apply(key: K): V
    Definition Classes
    MapOps → Function1
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  17. def applyOrElse[K1 <: K, V1 >: V](x: K1, default: (K1) => V1): V1
    Definition Classes
    MapOps → PartialFunction
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def canEqual(that: Any): Boolean
    Definition Classes
    Map → Equals
  20. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  21. def clear(): Unit
    Definition Classes
    MapOps → Builder → Clearable
  22. def clone(): Map[K, V]
    Definition Classes
    MapOps → Cloneable → AnyRef
  23. final def coll: MapWrapper.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  24. def collect[K2, V2](pf: PartialFunction[(K, V), (K2, V2)]): Map[K2, V2]
    Definition Classes
    MapOps
  25. def collect[B](pf: PartialFunction[(K, V), B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  26. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
    Definition Classes
    IterableOnceOps
  27. def compose[R](k: PartialFunction[R, K]): PartialFunction[R, V]
    Definition Classes
    PartialFunction
  28. def compose[A](g: (A) => K): (A) => V
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  29. def concat[V2 >: V](suffix: collection.IterableOnce[(K, V2)]): Map[K, V2]
    Definition Classes
    MapOps
  30. def concat[B >: (K, V)](suffix: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
  31. def contains(key: K): Boolean
    Definition Classes
    MapOps
  32. def copyToArray[B >: (K, V)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  33. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  34. def copyToArray[B >: (K, V)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  35. def corresponds[B](that: collection.IterableOnce[B])(p: ((K, V), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  36. def count(p: ((K, V)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  37. def default(key: K): V
    Definition Classes
    MapOps
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  38. def drop(n: Int): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def dropRight(n: Int): Map[K, V]
    Definition Classes
    IterableOps
  40. def dropWhile(p: ((K, V)) => Boolean): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  41. def elementWise: ElementWiseExtractor[K, V]
    Definition Classes
    PartialFunction
  42. def empty: Map[K, V]
    Definition Classes
    MapFactoryDefaults → IterableOps
  43. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  44. def equals(o: Any): Boolean
    Definition Classes
    Map → Equals → AnyRef → Any
  45. def exists(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  46. def filter(pred: ((K, V)) => Boolean): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  47. def filterInPlace(p: (K, V) => Boolean): MapWrapper.this.type
    Definition Classes
    MapOps
  48. def filterNot(pred: ((K, V)) => Boolean): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  50. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  51. def flatMap[K2, V2](f: ((K, V)) => collection.IterableOnce[(K2, V2)]): Map[K2, V2]
    Definition Classes
    MapOps
  52. def flatMap[B](f: ((K, V)) => collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def flatten[B](implicit asIterable: ((K, V)) => collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  54. def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  55. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  56. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  57. def forall(p: ((K, V)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  58. def foreach[U](f: ((K, V)) => U): Unit
    Definition Classes
    IterableOnceOps
  59. def foreachEntry[U](f: (K, V) => U): Unit
    Definition Classes
    MapOps
  60. def fromSpecific(coll: collection.IterableOnce[(K, V)]): Map[K, V]
    Attributes
    protected
    Definition Classes
    MapFactoryDefaults → IterableOps
  61. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  62. def getOrElse[V1 >: V](key: K, default: => V1): V1
    Definition Classes
    MapOps
  63. def getOrElseUpdate(key: K, op: => V): V
    Definition Classes
    MapOps
  64. def groupBy[K](f: ((K, V)) => K): Map[K, Map[K, V]]
    Definition Classes
    IterableOps
  65. def groupMap[K, B](key: ((K, V)) => K)(f: ((K, V)) => B): Map[K, collection.mutable.Iterable[B]]
    Definition Classes
    IterableOps
  66. def groupMapReduce[K, B](key: ((K, V)) => K)(f: ((K, V)) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  67. def grouped(size: Int): collection.Iterator[Map[K, V]]
    Definition Classes
    IterableOps
  68. def hashCode(): Int
    Definition Classes
    Map → AnyRef → Any
  69. def head: (K, V)
    Definition Classes
    IterableOps
  70. def headOption: Option[(K, V)]
    Definition Classes
    IterableOps
  71. def init: Map[K, V]
    Definition Classes
    IterableOps
  72. def inits: collection.Iterator[Map[K, V]]
    Definition Classes
    IterableOps
  73. def isDefinedAt(key: K): Boolean
    Definition Classes
    MapOps → PartialFunction
  74. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  75. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  76. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  77. def iterableFactory: IterableFactory[collection.mutable.Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  78. def keySet: Set[K]
    Definition Classes
    MapOps
  79. def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[K, S]): S
    Definition Classes
    MapOps
  80. def keys: collection.Iterable[K]
    Definition Classes
    MapOps
  81. def keysIterator: collection.Iterator[K]
    Definition Classes
    MapOps
  82. def knownSize: Int
    Definition Classes
    MapOps → Growable → IterableOnce
  83. def last: (K, V)
    Definition Classes
    IterableOps
  84. def lastOption: Option[(K, V)]
    Definition Classes
    IterableOps
  85. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, MapWrapper.this.type]
    Definition Classes
    Iterable
  86. def lift: (K) => Option[V]
    Definition Classes
    PartialFunction
  87. def map[K2, V2](f: ((K, V)) => (K2, V2)): Map[K2, V2]
    Definition Classes
    MapOps
  88. def map[B](f: ((K, V)) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  89. def mapFactory: MapFactory[Map]
    Definition Classes
    Map → Map → MapOps
  90. final def mapFromIterable[K2, V2](it: collection.Iterable[(K2, V2)]): Map[K2, V2]
    Attributes
    protected
    Definition Classes
    MapOps
    Annotations
    @inline()
  91. def mapResult[NewTo](f: (Map[K, V]) => NewTo): Builder[(K, V), NewTo]
    Definition Classes
    Builder
  92. def mapValuesInPlace(f: (K, V) => V): MapWrapper.this.type
    Definition Classes
    MapOps
  93. def max[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  94. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  95. def maxByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  96. def maxOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  97. def min[B >: (K, V)](implicit ord: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  98. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
    Definition Classes
    IterableOnceOps
  99. def minByOption[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  100. def minOption[B >: (K, V)](implicit ord: math.Ordering[B]): Option[(K, V)]
    Definition Classes
    IterableOnceOps
  101. final def mkIterator[B](xs: MoreElem[B]): Iterator[B]

    Cross-version way for creating an iterator from MoreElem.

    Cross-version way for creating an iterator from MoreElem.

    Attributes
    protected
  102. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  103. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  104. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  105. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  106. def newSpecificBuilder: Builder[(K, V), Map[K, V]]
    Attributes
    protected
    Definition Classes
    MapFactoryDefaults → IterableOps
  107. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  108. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  109. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  110. def orElse[A1 <: K, B1 >: V](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  111. def partition(p: ((K, V)) => Boolean): (Map[K, V], Map[K, V])
    Definition Classes
    IterableOps
  112. def partitionMap[A1, A2](f: ((K, V)) => Either[A1, A2]): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])
    Definition Classes
    IterableOps
  113. def product[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  114. def put(key: K, value: V): Option[V]
    Definition Classes
    MapOps
  115. def reduce[B >: (K, V)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  116. def reduceLeft[B >: (K, V)](op: (B, (K, V)) => B): B
    Definition Classes
    IterableOnceOps
  117. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  118. def reduceOption[B >: (K, V)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  119. def reduceRight[B >: (K, V)](op: ((K, V), B) => B): B
    Definition Classes
    IterableOnceOps
  120. def reduceRightOption[B >: (K, V)](op: ((K, V), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  121. def remove(key: K): Option[V]
    Definition Classes
    MapOps
  122. def result(): Map[K, V]
    Definition Classes
    MapOps → Builder
  123. def reversed: collection.Iterable[(K, V)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  124. def runWith[U](action: (V) => U): (K) => Boolean
    Definition Classes
    PartialFunction
  125. def scan[B >: (K, V)](z: B)(op: (B, B) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
  126. def scanLeft[B](z: B)(op: (B, (K, V)) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  127. def scanRight[B](z: B)(op: ((K, V), B) => B): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
  128. def size: Int
    Definition Classes
    IterableOnceOps
  129. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  130. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  131. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  132. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  133. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Definition Classes
    Builder
  134. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  135. def slice(from: Int, until: Int): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  136. def sliding(size: Int, step: Int): collection.Iterator[Map[K, V]]
    Definition Classes
    IterableOps
  137. def sliding(size: Int): collection.Iterator[Map[K, V]]
    Definition Classes
    IterableOps
  138. def span(p: ((K, V)) => Boolean): (Map[K, V], Map[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  139. def splitAt(n: Int): (Map[K, V], Map[K, V])
    Definition Classes
    IterableOps → IterableOnceOps
  140. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(K, V), S]): S
    Definition Classes
    IterableOnce
  141. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Map → Iterable
  142. def subtractAll(xs: collection.IterableOnce[K]): MapWrapper.this.type
    Definition Classes
    Shrinkable
  143. def sum[B >: (K, V)](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  144. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  145. def tail: Map[K, V]
    Definition Classes
    IterableOps
  146. def tails: collection.Iterator[Map[K, V]]
    Definition Classes
    IterableOps
  147. def take(n: Int): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  148. def takeRight(n: Int): Map[K, V]
    Definition Classes
    IterableOps
  149. def takeWhile(p: ((K, V)) => Boolean): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  150. def tapEach[U](f: ((K, V)) => U): Map[K, V]
    Definition Classes
    IterableOps → IterableOnceOps
  151. def to[C1](factory: Factory[(K, V), C1]): C1
    Definition Classes
    IterableOnceOps
  152. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  153. final def toBuffer[B >: (K, V)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  154. def toIndexedSeq: collection.immutable.IndexedSeq[(K, V)]
    Definition Classes
    IterableOnceOps
  155. final def toIterable: MapWrapper.this.type
    Definition Classes
    Iterable → IterableOps
  156. def toList: collection.immutable.List[(K, V)]
    Definition Classes
    IterableOnceOps
  157. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  158. def toSeq: collection.immutable.Seq[(K, V)]
    Definition Classes
    IterableOnceOps
  159. def toSet[B >: (K, V)]: Set[B]
    Definition Classes
    IterableOnceOps
  160. def toString(): String
    Definition Classes
    Map → Function1 → Iterable → AnyRef → Any
  161. def toVector: collection.immutable.Vector[(K, V)]
    Definition Classes
    IterableOnceOps
  162. def transpose[B](implicit asIterable: ((K, V)) => collection.Iterable[B]): collection.mutable.Iterable[collection.mutable.Iterable[B]]
    Definition Classes
    IterableOps
  163. def unapply(a: K): Option[V]
    Definition Classes
    PartialFunction
  164. def unzip[A1, A2](implicit asPair: ((K, V)) => (A1, A2)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2])
    Definition Classes
    IterableOps
  165. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) => (A1, A2, A3)): (collection.mutable.Iterable[A1], collection.mutable.Iterable[A2], collection.mutable.Iterable[A3])
    Definition Classes
    IterableOps
  166. def update(key: K, value: V): Unit
    Definition Classes
    MapOps
  167. def updateWith(key: K)(remappingFunction: (Option[V]) => Option[V]): Option[V]
    Definition Classes
    MapOps
  168. def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
    Definition Classes
    MapOps
  169. def values: collection.Iterable[V]
    Definition Classes
    MapOps
  170. def valuesIterator: collection.Iterator[V]
    Definition Classes
    MapOps
  171. def view: MapView[K, V]
    Definition Classes
    MapOps → IterableOps
  172. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  173. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  174. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  175. def withDefault(d: (K) => V): Map[K, V]
    Definition Classes
    Map
  176. def withDefaultValue(d: V): Map[K, V]
    Definition Classes
    Map
  177. def withFilter(p: ((K, V)) => Boolean): WithFilter[K, V, [x]collection.mutable.Iterable[x], [x, y]Map[x, y]]
    Definition Classes
    MapFactoryDefaults → IterableOps
  178. def zip[B](that: collection.IterableOnce[B]): collection.mutable.Iterable[((K, V), B)]
    Definition Classes
    IterableOps
  179. def zipAll[A1 >: (K, V), B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.mutable.Iterable[(A1, B)]
    Definition Classes
    IterableOps
  180. def zipWithIndex: collection.mutable.Iterable[((K, V), Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def +[V1 >: V](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 >: V](kv: (K, V1)): Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

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

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

  4. def ++:[B >: (K, V)](that: collection.IterableOnce[B]): collection.mutable.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  5. final def +=(elem1: (K, V), elem2: (K, V), elems: (K, V)*): MapWrapper.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  7. final def -(key: K): Map[K, V]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  8. def --(keys: collection.IterableOnce[K]): Map[K, V]
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map.

  9. def -=(elem1: K, elem2: K, elems: K*): MapWrapper.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

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

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  13. def companion: IterableFactory[[_]collection.mutable.Iterable[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

  15. def filterKeys(p: (K) => Boolean): MapView[K, V]
    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).

  16. 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)

  17. def mapValues[W](f: (V) => 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).

  18. final def repr: Map[K, V]
    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

  19. final def retain(p: (K, V) => Boolean): MapWrapper.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

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

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

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

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

  22. final def toStream: collection.immutable.Stream[(K, V)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  23. final def toTraversable: collection.Traversable[(K, V)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  24. final def transform(f: (K, V) => V): MapWrapper.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapValuesInPlace instead

  25. def updated[V1 >: V](key: K, value: V1): Map[K, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

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

  26. def view(from: Int, until: Int): View[(K, V)]
    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, V]

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

Inherited from Shrinkable[K]

Inherited from Builder[(K, V), Map[K, V]]

Inherited from Growable[(K, V)]

Inherited from Clearable

Inherited from collection.mutable.Cloneable[Map[K, V]]

Inherited from java.lang.Cloneable

Inherited from Map[K, V]

Inherited from Equals

Inherited from MapFactoryDefaults[K, V, [x, y]Map[x, y], [x]collection.mutable.Iterable[x]]

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

Inherited from PartialFunction[K, V]

Inherited from (K) => V

Inherited from collection.mutable.Iterable[(K, V)]

Inherited from collection.Iterable[(K, V)]

Inherited from IterableFactoryDefaults[(K, V), [x]collection.mutable.Iterable[x]]

Inherited from IterableOps[(K, V), [_]collection.mutable.Iterable[_], Map[K, V]]

Inherited from IterableOnceOps[(K, V), [_]collection.mutable.Iterable[_], Map[K, V]]

Inherited from collection.IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Ungrouped