class LinkedHashMap[K, V] extends Map[K, V] with LinkedHashMapCompat[K, V]

mutable.Map[K, V] implementation wrapping a java.util.LinkedHashMap[K, V] which doesn't allow null as key. Useful since the java.util implementation is safe from hash-collision attacks.

Linear Supertypes
LinkedHashMapCompat[K, V], Map[K, V], MapOps[K, V, Map, Map[K, V]], Shrinkable[K], Builder[(K, V), Map[K, V]], Growable[(K, V)], Clearable, Cloneable[Map[K, V]], Cloneable, Map[K, V], Equals, MapFactoryDefaults[K, V, [x, y]Map[x, y], [x]Iterable[x]], MapOps[K, V, [_, _]Map[_, _], Map[K, V]], PartialFunction[K, V], (K) => V, Iterable[(K, V)], Iterable[(K, V)], IterableFactoryDefaults[(K, V), [x]Iterable[x]], IterableOps[(K, V), [_]Iterable[_], Map[K, V]], IterableOnceOps[(K, V), [_]Iterable[_], Map[K, V]], IterableOnce[(K, V)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LinkedHashMap
  2. LinkedHashMapCompat
  3. Map
  4. MapOps
  5. Shrinkable
  6. Builder
  7. Growable
  8. Clearable
  9. Cloneable
  10. Cloneable
  11. Map
  12. Equals
  13. MapFactoryDefaults
  14. MapOps
  15. PartialFunction
  16. Function1
  17. Iterable
  18. Iterable
  19. IterableFactoryDefaults
  20. IterableOps
  21. IterableOnceOps
  22. IterableOnce
  23. AnyRef
  24. 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 KeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable
    Attributes
    protected
    Definition Classes
    MapOps

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

    (Since version 2.13.0) Use filterInPlace instead

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

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

  21. final def toIterable: LinkedHashMap.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

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

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

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

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

  24. final def toTraversable: Traversable[(K, V)]
    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

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

    (Since version 2.13.0) Use mapValuesInPlace instead

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

  27. 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 LinkedHashMapCompat[K, V]

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 Cloneable[Map[K, V]]

Inherited from Cloneable

Inherited from Map[K, V]

Inherited from Equals

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

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

Inherited from PartialFunction[K, V]

Inherited from (K) => V

Inherited from Iterable[(K, V)]

Inherited from Iterable[(K, V)]

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

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

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

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Ungrouped