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

trait SeqMap[K, +V] extends Map[K, V] with MapOps[K, V, SeqMap, SeqMap[K, V]] with MapFactoryDefaults[K, V, SeqMap, Iterable]

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. SeqMap
  2. Map
  3. Equals
  4. MapFactoryDefaults
  5. MapOps
  6. PartialFunction
  7. Function1
  8. Iterable
  9. IterableFactoryDefaults
  10. IterableOps
  11. IterableOnceOps
  12. IterableOnce
  13. AnyRef
  14. 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 get(key: K): Option[V]
  2. abstract def iterator: Iterator[(K, V)]
  3. abstract def -(key1: K, key2: K, keys: K*): Map[K, V]
  4. abstract def -(key: K): Map[K, V]

Concrete Value Members

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

Deprecated Value Members

  1. def +[V1 >: V](elem1: (K, V1), elem2: (K, V1), elems: (K, V1)*): SeqMap[K, V1]
  2. def +[V1 >: V](kv: (K, V1)): SeqMap[K, V1]
  3. def ++:[V1 >: V](that: IterableOnce[(K, V1)]): SeqMap[K, V1]
  4. def ++:[B >: (K, V)](that: IterableOnce[B]): Iterable[B]
  5. def --(keys: IterableOnce[K]): SeqMap[K, V]
  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[Iterable]
  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: SeqMap[K, V]
  46. def sameElements[B >: A](that: IterableOnce[B]): Boolean
  47. def seq: SeqMap.this.type
  48. def size: Int
  49. def sum(implicit num: math.Numeric[(K, V)]): (K, V)
  50. def to[C1](factory: Factory[(K, V), C1]): C1
  51. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  52. def toBuffer[B >: A]: Buffer[B]
  53. def toIndexedSeq: IndexedSeq[(K, V)]
  54. final def toIterable: Iterable[(K, V)]
  55. def toIterator: Iterator[(K, V)]
  56. final def toIterator: Iterator[(K, V)]
  57. def toList: immutable.List[(K, V)]
  58. def toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): immutable.Map[K, V]
  59. def toSeq: immutable.Seq[(K, V)]
  60. def toSet[B >: A]: immutable.Set[B]
  61. def toStream: immutable.Stream[(K, V)]
  62. final def toStream: immutable.Stream[(K, V)]
  63. final def toTraversable: Traversable[(K, V)]
  64. final def toTraversable: Traversable[(K, V)]
  65. def toVector: immutable.Vector[(K, V)]
  66. def view(from: Int, until: Int): View[(K, V)]
  67. def withFilter(f: ((K, V)) => Boolean): Iterator[(K, V)]
  68. def →[B](y: B): (SeqMap[K, V], B)

Inherited from Map[K, V]

Inherited from Equals

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

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

Inherited from PartialFunction[K, V]

Inherited from (K) => V

Inherited from Iterable[(K, V)]

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

Inherited from IterableOps[(K, V), Iterable, SeqMap[K, V]]

Inherited from IterableOnceOps[(K, V), Iterable, SeqMap[K, V]]

Inherited from IterableOnce[(K, V)]

Inherited from AnyRef

Inherited from Any

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

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

Inherited by implicit conversion any2stringadd fromSeqMap[K, V] to any2stringadd[SeqMap[K, V]]

Inherited by implicit conversion StringFormat fromSeqMap[K, V] to StringFormat[SeqMap[K, V]]

Inherited by implicit conversion Ensuring fromSeqMap[K, V] to Ensuring[SeqMap[K, V]]

Inherited by implicit conversion ArrowAssoc fromSeqMap[K, V] to ArrowAssoc[SeqMap[K, V]]

Ungrouped