Scala Standard Library 2.13.1 - scala.collection.MapFactoryDefaults (original) (raw)

trait MapFactoryDefaults[K, +V, +CC[x, y] <: IterableOps[(x, y), Iterable, Iterable[(x, y)]], +WithFilterCC[x] <: IterableOps[x, WithFilterCC, WithFilterCC[x]] with Iterable[x]] extends MapOps[K, V, CC, CC[K, V]] with IterableOps[(K, V), WithFilterCC, CC[K, V]]

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. MapFactoryDefaults
  2. MapOps
  3. PartialFunction
  4. Function1
  5. IterableOps
  6. IterableOnceOps
  7. IterableOnce
  8. AnyRef
  9. Any

Implicitly

  1. by UnliftOps

  2. by iterableOnceExtensionMethods

  3. by any2stringadd

  4. by StringFormat

  5. by Ensuring

  6. by ArrowAssoc

  7. Hide All

  8. Show All

Visibility

  1. Public
  2. Protected

Abstract Value Members

  1. abstract def coll: CC[K, V @scala.annotation.unchecked.uncheckedVariance]
  2. abstract def get(key: K): Option[V]
  3. abstract def iterableFactory: IterableFactory[[_]WithFilterCC[_]]
  4. abstract def iterator: Iterator[(K, V)]
  5. abstract def mapFactory: MapFactory[CC]
  6. abstract def toIterable: Iterable[(K, V)]

Concrete Value Members

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

Deprecated Value Members

  1. def +[V1 >: V](elem1: (K, V1), elem2: (K, V1), elems: (K, V1)*): CC[K, V1]
  2. def +[V1 >: V](kv: (K, V1)): CC[K, V1]
  3. def ++:[V1 >: V](that: IterableOnce[(K, V1)]): CC[K, V1]
  4. def ++:[B >: (K, V)](that: IterableOnce[B]): WithFilterCC[B]
  5. def --(keys: IterableOnce[K]): CC[K, V @scala.annotation.unchecked.uncheckedVariance]
  6. def /:[B](z: B)(op: (B, (K, V)) => B): B
  7. final def /:[B](z: B)(op: (B, (K, V)) => B): B
  8. def :\[B](z: B)(op: ((K, V), B) => B): B
  9. final def :\[B](z: B)(op: ((K, V), B) => B): B
  10. def aggregate[B](z: => B)(seqop: (B, (K, V)) => B, combop: (B, B) => B): B
  11. def collectFirst[B](f: PartialFunction[(K, V), B]): Option[B]
  12. def companion: IterableFactory[[_]WithFilterCC[_]]
  13. def copyToBuffer(dest: Buffer[(K, V)]): Unit
  14. final def copyToBuffer[B >: (K, V)](dest: Buffer[B]): Unit
  15. def count(f: ((K, V)) => Boolean): Int
  16. def exists(f: ((K, V)) => Boolean): Boolean
  17. def filter(f: ((K, V)) => Boolean): Iterator[(K, V)]
  18. def filterKeys(p: (K) => Boolean): MapView[K, V]
  19. def find(p: ((K, V)) => Boolean): Option[(K, V)]
  20. def flatMap[B](f: ((K, V)) => IterableOnce[B]): IterableOnce[B]
  21. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  22. def foldLeft[B](z: B)(op: (B, (K, V)) => B): B
  23. def foldRight[B](z: B)(op: ((K, V), B) => B): B
  24. def forall(f: ((K, V)) => Boolean): Boolean
  25. def foreach[U](f: ((K, V)) => U): Unit
  26. def hasDefiniteSize: Boolean
  27. def isEmpty: Boolean
  28. def map[B](f: ((K, V)) => B): IterableOnce[B]
  29. def mapValues[W](f: (V) => W): MapView[K, W]
  30. def max(implicit ord: math.Ordering[(K, V)]): (K, V)
  31. def maxBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
  32. def min(implicit ord: math.Ordering[(K, V)]): (K, V)
  33. def minBy[B](f: ((K, V)) => B)(implicit cmp: math.Ordering[B]): (K, V)
  34. def mkString: String
  35. def mkString(sep: String): String
  36. def mkString(start: String, sep: String, end: String): String
  37. def nonEmpty: Boolean
  38. def product(implicit num: math.Numeric[(K, V)]): (K, V)
  39. def reduce(f: ((K, V), (K, V)) => (K, V)): (K, V)
  40. def reduceLeft(f: ((K, V), (K, V)) => (K, V)): (K, V)
  41. def reduceLeftOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
  42. def reduceOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
  43. def reduceRight(f: ((K, V), (K, V)) => (K, V)): (K, V)
  44. def reduceRightOption(f: ((K, V), (K, V)) => (K, V)): Option[(K, V)]
  45. final def repr: CC[K, V @scala.annotation.unchecked.uncheckedVariance]
  46. def sameElements[B >: A](that: IterableOnce[B]): Boolean
  47. def size: Int
  48. def sum(implicit num: math.Numeric[(K, V)]): (K, V)
  49. def to[C1](factory: Factory[(K, V), C1]): C1
  50. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  51. def toBuffer[B >: A]: Buffer[B]
  52. def toIndexedSeq: IndexedSeq[(K, V)]
  53. final def toIterable: Iterable[(K, V)]
  54. def toIterator: Iterator[(K, V)]
  55. final def toIterator: Iterator[(K, V)]
  56. def toList: immutable.List[(K, V)]
  57. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
  58. def toSeq: immutable.Seq[(K, V)]
  59. def toSet[B >: A]: immutable.Set[B]
  60. def toStream: immutable.Stream[(K, V)]
  61. final def toStream: immutable.Stream[(K, V)]
  62. final def toTraversable: Traversable[(K, V)]
  63. final def toTraversable: Traversable[(K, V)]
  64. def toVector: immutable.Vector[(K, V)]
  65. def view(from: Int, until: Int): View[(K, V)]
  66. def withFilter(f: ((K, V)) => Boolean): Iterator[(K, V)]
  67. def →[B](y: B): (MapFactoryDefaults[K, V, CC, WithFilterCC], B)

Inherited from MapOps[K, V, CC, CC[K, V @scala.annotation.unchecked.uncheckedVariance]]

Inherited from PartialFunction[K, V]

Inherited from (K) => V

Inherited from IterableOps[(K, V), [_]WithFilterCC[_], CC[K, V @scala.annotation.unchecked.uncheckedVariance]]

Inherited from IterableOnceOps[(K, V), [_]WithFilterCC[_], CC[K, V @scala.annotation.unchecked.uncheckedVariance]]

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion UnliftOps fromMapFactoryDefaults[K, V, CC, WithFilterCC] to UnliftOps[K, B]

Inherited by implicit conversion iterableOnceExtensionMethods fromMapFactoryDefaults[K, V, CC, WithFilterCC] to IterableOnceExtensionMethods[(K, V)]

Inherited by implicit conversion any2stringadd fromMapFactoryDefaults[K, V, CC, WithFilterCC] to any2stringadd[MapFactoryDefaults[K, V, CC, WithFilterCC]]

Inherited by implicit conversion StringFormat fromMapFactoryDefaults[K, V, CC, WithFilterCC] to StringFormat[MapFactoryDefaults[K, V, CC, WithFilterCC]]

Inherited by implicit conversion Ensuring fromMapFactoryDefaults[K, V, CC, WithFilterCC] to Ensuring[MapFactoryDefaults[K, V, CC, WithFilterCC]]

Inherited by implicit conversion ArrowAssoc fromMapFactoryDefaults[K, V, CC, WithFilterCC] to ArrowAssoc[MapFactoryDefaults[K, V, CC, WithFilterCC]]

Ungrouped