Packages

class EqHashMap[K <: AnyRef, V] extends Map[K, V] with EqHash[(K, V), EqHashMap[K, V]]

Linear Supertypes
EqHash[(K, V), EqHashMap[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]], scala.collection.IterableOnce[(K, V)], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EqHashMap
  2. EqHash
  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
Implicitly
  1. by UnliftOps
  2. by iterableOnceExtensionMethods
  3. by ChainingOps
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EqHashMap(other: EqHashMap[K, V])
  2. new EqHashMap(_sizeHint: Int = EqHash.defCapacity)

Type Members

  1. abstract class EqHashIterator[A] extends Iterator[A]
    Attributes
    protected
    Definition Classes
    EqHash
  2. class KeyIndexIterator extends (EqHash.this)#EqHashIterator[Int]
    Attributes
    protected
    Definition Classes
    EqHash
  3. class EntryIterator extends EqHashIterator[(K, V)]
    Attributes
    protected
  4. trait GenKeySet extends AnyRef
    Attributes
    protected
    Definition Classes
    MapOps
  5. class KeyIterator extends EqHashIterator[K]
    Attributes
    protected
  6. class KeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable
    Attributes
    protected
    Definition Classes
    MapOps
  7. class ValueIterator extends EqHashIterator[V]
    Attributes
    protected

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

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toany2stringadd[EqHashMap[K, V]] performed by method any2stringadd in scala.Predef.
    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:
    (eqHashMap: any2stringadd[EqHashMap[K, V]]).+(other)
    Definition Classes
    any2stringadd

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: scala.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: scala.collection.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)*): EqHashMap.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: scala.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*): EqHashMap.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. def /:[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  11. 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 /:

  12. def :\[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  13. 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 :\

  14. 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.

  15. def collectFirst[B](f: PartialFunction[(K, V), B]): Option[B]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

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

    (Since version 2.13.0) Use iterableFactory instead

  17. def copyToBuffer(dest: Buffer[(K, V)]): Unit
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  18. 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

  19. def count(f: ((K, V)) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  20. def exists(f: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  21. def filter(f: ((K, V)) => Boolean): Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

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

  23. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  24. def find(p: ((K, V)) => Boolean): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  25. def flatMap[B](f: ((K, V)) => scala.collection.IterableOnce[B]): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  26. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  27. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  28. def foldRight[B](z: B)(op: ((K, V), B) => B): B
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  29. def forall(f: ((K, V)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  30. def foreach[U](f: ((K, V)) => U): Unit
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  31. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toStringFormat[EqHashMap[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

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

  33. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  34. def map[B](f: ((K, V)) => B): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

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

  36. def max(implicit ord: Ordering[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  37. def maxBy[B](f: ((K, V)) => B)(implicit cmp: Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  38. def min(implicit ord: Ordering[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  39. def minBy[B](f: ((K, V)) => B)(implicit cmp: Ordering[B]): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  40. def mkString: String
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  41. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  42. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  43. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  44. def product(implicit num: Numeric[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  45. def reduce(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  46. def reduceLeft(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  47. def reduceLeftOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  48. def reduceOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  49. def reduceRight(f: ((K, V), (K, V)) => (K, V)): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  50. def reduceRightOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  51. 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

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

    (Since version 2.13.0) Use filterInPlace instead

  53. def sameElements[B >: A](that: scala.collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  54. def seq: EqHashMap.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  55. def size: Int
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  56. def sum(implicit num: Numeric[(K, V)]): (K, V)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  57. def to[C1](factory: Factory[(K, V), C1]): C1
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  58. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  59. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  60. def toIndexedSeq: IndexedSeq[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  61. final def toIterable: Iterable[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  62. final def toIterable: EqHashMap.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

  63. def toIterator: Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  65. def toList: List[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  66. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  67. def toSeq: Seq[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  68. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  69. def toStream: Stream[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

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

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

  71. final def toTraversable: Traversable[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  72. 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

  73. def toVector: Vector[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

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

    (Since version 2.13.0) Use mapValuesInPlace instead

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

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

  77. def withFilter(f: ((K, V)) => Boolean): Iterator[(K, V)]
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toIterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (eqHashMap: IterableOnceExtensionMethods[(K, V)]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  78. def [B](y: B): (EqHashMap[K, V], B)
    Implicit
    This member is added by an implicit conversion from EqHashMap[K, V] toArrowAssoc[EqHashMap[K, V]] performed by method ArrowAssoc in scala.Predef.This conversion will take place only if V is a subclass of Option[Nothing] (V <: Option[Nothing]).
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

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

Inherited from EqHash[(K, V), EqHashMap[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 scala.collection.IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion UnliftOps fromEqHashMap[K, V] to UnliftOps[K, B]

Inherited by implicit conversion iterableOnceExtensionMethods fromEqHashMap[K, V] to IterableOnceExtensionMethods[(K, V)]

Inherited by implicit conversion ChainingOps fromEqHashMap[K, V] to ChainingOps[EqHashMap[K, V]]

Inherited by implicit conversion any2stringadd fromEqHashMap[K, V] to any2stringadd[EqHashMap[K, V]]

Inherited by implicit conversion StringFormat fromEqHashMap[K, V] to StringFormat[EqHashMap[K, V]]

Inherited by implicit conversion Ensuring fromEqHashMap[K, V] to Ensuring[EqHashMap[K, V]]

Inherited by implicit conversion ArrowAssoc fromEqHashMap[K, V] to ArrowAssoc[EqHashMap[K, V]]

Ungrouped