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

class Map[A, B] extends SeqView.Map[A, B] with IndexedSeqView[B]

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. Map
  2. IndexedSeqView
  3. IndexedSeqOps
  4. Map
  5. SeqView
  6. SeqOps
  7. Map
  8. AbstractView
  9. View
  10. Serializable
  11. AbstractIterable
  12. Iterable
  13. IterableFactoryDefaults
  14. IterableOps
  15. IterableOnceOps
  16. IterableOnce
  17. AnyRef
  18. Any

Implicitly

  1. by iterableOnceExtensionMethods

  2. by any2stringadd

  3. by StringFormat

  4. by Ensuring

  5. by ArrowAssoc

  6. Hide All

  7. Show All

Visibility

  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
  2. final def ##(): Int
  3. def +(other: String): String
  4. final def ++[B >: B](suffix: IterableOnce[B]): View[B]
  5. final def ++:[B >: B](prefix: IterableOnce[B]): View[B]
  6. final def +:[B >: B](elem: B): View[B]
  7. def ->[B](y: B): (Map[A, B], B)
  8. final def :+[B >: B](elem: B): View[B]
  9. final def :++[B >: B](suffix: IterableOnce[B]): View[B]
  10. final def ==(arg0: Any): Boolean
  11. final def addString(b: mutable.StringBuilder): mutable.StringBuilder
  12. final def addString(b: mutable.StringBuilder, sep: String): mutable.StringBuilder
  13. def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder
  14. def appended[B >: B](elem: B): IndexedSeqView[B]
  15. def appendedAll[B >: B](suffix: SomeIndexedSeqOps[B]): IndexedSeqView[B]
  16. def appendedAll[B >: B](suffix: SomeSeqOps[B]): SeqView[B]
  17. def appendedAll[B >: B](suffix: IterableOnce[B]): View[B]
  18. def apply(idx: Int): B
  19. final def asInstanceOf[T0]: T0
  20. def className: String
  21. def clone(): AnyRef
  22. final def coll: Map.this.type
  23. def collect[B](pf: PartialFunction[B, B]): View[B]
  24. def collectFirst[B](pf: PartialFunction[B, B]): Option[B]
  25. def combinations(n: Int): Iterator[View[B]]
  26. def concat[B >: B](suffix: SomeIndexedSeqOps[B]): IndexedSeqView[B]
  27. def concat[B >: B](suffix: SomeSeqOps[B]): SeqView[B]
  28. final def concat[B >: B](suffix: IterableOnce[B]): View[B]
  29. def contains[A1 >: B](elem: A1): Boolean
  30. def containsSlice[B](that: Seq[B]): Boolean
  31. def copyToArray[B >: B](xs: Array[B], start: Int, len: Int): Int
  32. def copyToArray[B >: B](xs: Array[B], start: Int): Int
  33. def copyToArray[B >: B](xs: Array[B]): Int
  34. def corresponds[B](that: Seq[B])(p: (B, B) => Boolean): Boolean
  35. def corresponds[B](that: IterableOnce[B])(p: (B, B) => Boolean): Boolean
  36. def count(p: (B) => Boolean): Int
  37. def diff[B >: B](that: Seq[B]): View[B]
  38. def distinct: View[B]
  39. def distinctBy[B](f: (B) => B): View[B]
  40. def drop(n: Int): IndexedSeqView[B]
  41. def dropRight(n: Int): IndexedSeqView[B]
  42. def dropWhile(p: (B) => Boolean): View[B]
  43. def empty: View[B]
  44. def endsWith[B >: B](that: Iterable[B]): Boolean
  45. def ensuring(cond: (Map[A, B]) => Boolean, msg: => Any): Map[A, B]
  46. def ensuring(cond: (Map[A, B]) => Boolean): Map[A, B]
  47. def ensuring(cond: Boolean, msg: => Any): Map[A, B]
  48. def ensuring(cond: Boolean): Map[A, B]
  49. final def eq(arg0: AnyRef): Boolean
  50. def equals(arg0: AnyRef): Boolean
  51. def exists(p: (B) => Boolean): Boolean
  52. def filter(pred: (B) => Boolean): View[B]
  53. def filterNot(pred: (B) => Boolean): View[B]
  54. def finalize(): Unit
  55. def find(p: (B) => Boolean): Option[B]
  56. def findLast(p: (B) => Boolean): Option[B]
  57. def flatMap[B](f: (B) => IterableOnce[B]): View[B]
  58. def flatten[B](implicit asIterable: (B) => IterableOnce[B]): View[B]
  59. def fold[A1 >: B](z: A1)(op: (A1, A1) => A1): A1
  60. def foldLeft[B](z: B)(op: (B, B) => B): B
  61. def foldRight[B](z: B)(op: (B, B) => B): B
  62. def forall(p: (B) => Boolean): Boolean
  63. def foreach[U](f: (B) => U): Unit
  64. def formatted(fmtstr: String): String
  65. def fromSpecific(coll: IterableOnce[B]): View[B]
  66. final def getClass(): Class[_ <: AnyRef]
  67. def groupBy[K](f: (B) => K): immutable.Map[K, View[B]]
  68. def groupMap[K, B](key: (B) => K)(f: (B) => B): immutable.Map[K, View[B]]
  69. def groupMapReduce[K, B](key: (B) => K)(f: (B) => B)(reduce: (B, B) => B): immutable.Map[K, B]
  70. def grouped(size: Int): Iterator[View[B]]
  71. def hashCode(): Int
  72. def head: B
  73. def headOption: Option[B]
  74. def indexOf[B >: B](elem: B): Int
  75. def indexOf[B >: B](elem: B, from: Int): Int
  76. def indexOfSlice[B >: B](that: Seq[B]): Int
  77. def indexOfSlice[B >: B](that: Seq[B], from: Int): Int
  78. def indexWhere(p: (B) => Boolean): Int
  79. def indexWhere(p: (B) => Boolean, from: Int): Int
  80. def indices: immutable.Range
  81. def init: View[B]
  82. def inits: Iterator[View[B]]
  83. def intersect[B >: B](that: Seq[B]): View[B]
  84. def isDefinedAt(idx: Int): Boolean
  85. def isEmpty: Boolean
  86. final def isInstanceOf[T0]: Boolean
  87. def isTraversableAgain: Boolean
  88. def iterableFactory: IterableFactory[View]
  89. def iterator: Iterator[B]
  90. def knownSize: Int
  91. def last: B
  92. def lastIndexOf[B >: B](elem: B, end: Int = length - 1): Int
  93. def lastIndexOfSlice[B >: B](that: Seq[B]): Int
  94. def lastIndexOfSlice[B >: B](that: Seq[B], end: Int): Int
  95. def lastIndexWhere(p: (B) => Boolean): Int
  96. def lastIndexWhere(p: (B) => Boolean, end: Int): Int
  97. def lastOption: Option[B]
  98. def lazyZip[B](that: Iterable[B]): LazyZip2[B, B, Map.this.type]
  99. def length: Int
  100. final def lengthCompare(that: Iterable[_]): Int
  101. final def lengthCompare(len: Int): Int
  102. final def lengthIs: SizeCompareOps
  103. def map[B](f: (B) => B): IndexedSeqView[B]
  104. def max[B >: B](implicit ord: math.Ordering[B]): B
  105. def maxBy[B](f: (B) => B)(implicit cmp: math.Ordering[B]): B
  106. def maxByOption[B](f: (B) => B)(implicit cmp: math.Ordering[B]): Option[B]
  107. def maxOption[B >: B](implicit ord: math.Ordering[B]): Option[B]
  108. def min[B >: B](implicit ord: math.Ordering[B]): B
  109. def minBy[B](f: (B) => B)(implicit cmp: math.Ordering[B]): B
  110. def minByOption[B](f: (B) => B)(implicit cmp: math.Ordering[B]): Option[B]
  111. def minOption[B >: B](implicit ord: math.Ordering[B]): Option[B]
  112. final def mkString: String
  113. final def mkString(sep: String): String
  114. final def mkString(start: String, sep: String, end: String): String
  115. final def ne(arg0: AnyRef): Boolean
  116. def newSpecificBuilder: Builder[B, View[B]]
  117. def nonEmpty: Boolean
  118. final def notify(): Unit
  119. final def notifyAll(): Unit
  120. def occCounts[B](sq: Seq[B]): mutable.Map[B, Int]
  121. def padTo[B >: B](len: Int, elem: B): View[B]
  122. def partition(p: (B) => Boolean): (View[B], View[B])
  123. def partitionMap[A1, A2](f: (B) => Either[A1, A2]): (View[A1], View[A2])
  124. def patch[B >: B](from: Int, other: IterableOnce[B], replaced: Int): View[B]
  125. def permutations: Iterator[View[B]]
  126. def prepended[B >: B](elem: B): IndexedSeqView[B]
  127. def prependedAll[B >: B](prefix: SomeIndexedSeqOps[B]): IndexedSeqView[B]
  128. def prependedAll[B >: B](prefix: SomeSeqOps[B]): SeqView[B]
  129. def prependedAll[B >: B](prefix: IterableOnce[B]): View[B]
  130. def product[B >: B](implicit num: math.Numeric[B]): B
  131. def reduce[B >: B](op: (B, B) => B): B
  132. def reduceLeft[B >: B](op: (B, B) => B): B
  133. def reduceLeftOption[B >: B](op: (B, B) => B): Option[B]
  134. def reduceOption[B >: B](op: (B, B) => B): Option[B]
  135. def reduceRight[B >: B](op: (B, B) => B): B
  136. def reduceRightOption[B >: B](op: (B, B) => B): Option[B]
  137. def reverse: IndexedSeqView[B]
  138. def reverseIterator: Iterator[B]
  139. def reversed: Iterable[B]
  140. def sameElements[B >: B](that: IterableOnce[B]): Boolean
  141. def scan[B >: B](z: B)(op: (B, B) => B): View[B]
  142. def scanLeft[B](z: B)(op: (B, B) => B): View[B]
  143. def scanRight[B](z: B)(op: (B, B) => B): View[B]
  144. def search[B >: B](elem: B, from: Int, to: Int)(implicit ord: math.Ordering[B]): SearchResult
  145. def search[B >: B](elem: B)(implicit ord: math.Ordering[B]): SearchResult
  146. def segmentLength(p: (B) => Boolean, from: Int): Int
  147. final def segmentLength(p: (B) => Boolean): Int
  148. final def size: Int
  149. final def sizeCompare(that: Iterable[_]): Int
  150. final def sizeCompare(otherSize: Int): Int
  151. final def sizeIs: SizeCompareOps
  152. def slice(from: Int, until: Int): IndexedSeqView[B]
  153. def sliding(size: Int, step: Int): Iterator[View[B]]
  154. def sliding(size: Int): Iterator[View[B]]
  155. def sortBy[B](f: (B) => B)(implicit ord: Ordering[B]): View[B]
  156. def sortWith(lt: (B, B) => Boolean): View[B]
  157. def sorted[B >: B](implicit ord: Ordering[B]): SeqView[B]
  158. def span(p: (B) => Boolean): (View[B], View[B])
  159. def splitAt(n: Int): (View[B], View[B])
  160. def startsWith[B >: B](that: IterableOnce[B], offset: Int = 0): Boolean
  161. def stepper[S <: Stepper[_]](implicit shape: StepperShape[B, S]): S with EfficientSplit
  162. def stringPrefix: String
  163. def sum[B >: B](implicit num: math.Numeric[B]): B
  164. final def synchronized[T0](arg0: => T0): T0
  165. def tail: View[B]
  166. def tails: Iterator[View[B]]
  167. def take(n: Int): IndexedSeqView[B]
  168. def takeRight(n: Int): IndexedSeqView[B]
  169. def takeWhile(p: (B) => Boolean): View[B]
  170. def tapEach[U](f: (B) => U): IndexedSeqView[B]
  171. def to[C1](factory: Factory[B, C1]): C1
  172. def toArray[B >: B](implicit arg0: ClassTag[B]): Array[B]
  173. final def toBuffer[B >: B]: Buffer[B]
  174. def toIndexedSeq: immutable.IndexedSeq[B]
  175. final def toIterable: Map.this.type
  176. def toList: immutable.List[B]
  177. def toMap[K, V](implicit ev: <:<[B, (K, V)]): immutable.Map[K, V]
  178. def toSeq: immutable.Seq[B]
  179. def toSet[B >: B]: immutable.Set[B]
  180. def toString(): String
  181. def toVector: immutable.Vector[B]
  182. def transpose[B](implicit asIterable: (B) => Iterable[B]): View[View[B]]
  183. def unzip[A1, A2](implicit asPair: (B) => (A1, A2)): (View[A1], View[A2])
  184. def unzip3[A1, A2, A3](implicit asTriple: (B) => (A1, A2, A3)): (View[A1], View[A2], View[A3])
  185. def updated[B >: B](index: Int, elem: B): View[B]
  186. def view: IndexedSeqView[B]
  187. final def wait(): Unit
  188. final def wait(arg0: Long, arg1: Int): Unit
  189. final def wait(arg0: Long): Unit
  190. def withFilter(p: (B) => Boolean): WithFilter[B, [_]View[_]]
  191. def zip[B](that: IterableOnce[B]): View[(B, B)]
  192. def zipAll[A1 >: B, B](that: Iterable[B], thisElem: A1, thatElem: B): View[(A1, B)]
  193. def zipWithIndex: View[(B, Int)]

Deprecated Value Members

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

Inherited from IndexedSeqView[B]

Inherited from IndexedSeqOps[B, View, View[B]]

Inherited from SeqView.Map[A, B]

Inherited from SeqView[B]

Inherited from SeqOps[B, View, View[B]]

Inherited from View.Map[A, B]

Inherited from AbstractView[B]

Inherited from View[B]

Inherited from java.io.Serializable

Inherited from AbstractIterable[B]

Inherited from Iterable[B]

Inherited from IterableFactoryDefaults[B, [x]View[x]]

Inherited from IterableOps[B, [_]View[_], View[B]]

Inherited from IterableOnceOps[B, [_]View[_], View[B]]

Inherited from IterableOnce[B]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromMap[A, B] to IterableOnceExtensionMethods[B]

Inherited by implicit conversion any2stringadd fromMap[A, B] to any2stringadd[Map[A, B]]

Inherited by implicit conversion StringFormat fromMap[A, B] to StringFormat[Map[A, B]]

Inherited by implicit conversion Ensuring fromMap[A, B] to Ensuring[Map[A, B]]

Inherited by implicit conversion ArrowAssoc fromMap[A, B] to ArrowAssoc[Map[A, B]]

Ungrouped