Packages

trait View[A] extends collection.mutable.IndexedSeq[A] with TxnDebuggable

A view that supports accesses to a TArray instance outside the static scope of a Txn. TArray.View is to TArray as Ref.View is to Ref.

Linear Supertypes
TxnDebuggable, collection.mutable.IndexedSeq[A], IndexedSeqOps[A, collection.mutable.IndexedSeq, collection.mutable.IndexedSeq[A]], collection.IndexedSeq[A], IndexedSeqOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]], collection.mutable.Seq[A], SeqOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]], collection.mutable.Cloneable[collection.mutable.IndexedSeq[A]], java.lang.Cloneable, collection.Seq[A], Equals, SeqOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]], PartialFunction[Int, A], (Int) => A, collection.mutable.Iterable[A], collection.Iterable[A], IterableFactoryDefaults[A, [x]collection.mutable.IndexedSeq[x]], IterableOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]], IterableOnceOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]], collection.IterableOnce[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. View
  2. TxnDebuggable
  3. IndexedSeq
  4. IndexedSeqOps
  5. IndexedSeq
  6. IndexedSeqOps
  7. Seq
  8. SeqOps
  9. Cloneable
  10. Cloneable
  11. Seq
  12. Equals
  13. SeqOps
  14. PartialFunction
  15. Function1
  16. Iterable
  17. Iterable
  18. IterableFactoryDefaults
  19. IterableOps
  20. IterableOnceOps
  21. IterableOnce
  22. AnyRef
  23. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def apply(index: Int): A

    Performs an atomic read of the indexth element of array.

    Performs an atomic read of the indexth element of array. If an atomic block is active (see Txn.findCurrent) then the read will be performed as part of the transaction, otherwise it will act as if it was performed inside a new atomic block.

    Definition Classes
    View → SeqOps → Function1
  2. abstract def dbgStr: String

    Returns a string representation of the transactional value in this instance for debugging convenience.

    Returns a string representation of the transactional value in this instance for debugging convenience. The Ref reads (and writes) performed while constructing the result will be discarded before returning. This method works fine outside a transaction.

    If this method is called from within a transaction that is already doomed (status Txn.Rolledback), a string describing the reason for the outer transaction's rollback will be returned.

    Definition Classes
    TxnDebuggable
  3. abstract def dbgValue: Any

    Returns some value that is suitable for examination in a debugger, or returns a Txn.RollbackCause if called from inside a doomed atomic block.

    Returns some value that is suitable for examination in a debugger, or returns a Txn.RollbackCause if called from inside a doomed atomic block.

    Definition Classes
    TxnDebuggable
  4. abstract def length: Int
    Definition Classes
    View → SeqOps
  5. abstract def refViews: collection.immutable.IndexedSeq[Ref.View[A]]

    Returns a sequence of Ref.View that are backed by the elements of array.

    Returns a sequence of Ref.View that are backed by the elements of array. All operations on the contained Ref.Views are supported.

  6. abstract def tarray: TArray[A]

    The TArray from which this view was created.

  7. abstract def update(index: Int, v: A): Unit

    Performs an atomic write of the indexth element of array.

    Performs an atomic write of the indexth element of array. If an atomic block is active (see Txn.findCurrent) then the write will be performed as part of the transaction, otherwise it will act as if it was performed inside a new atomic block.

    Definition Classes
    View → SeqOps

Concrete Value Members

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

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, A) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  2. final def :\[B](z: B)(op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  3. def aggregate[B](z: => B)(seqop: (B, A) => 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.

  4. def companion: IterableFactory[[_]collection.mutable.IndexedSeq[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  5. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  6. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  7. 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)

  8. final def prefixLength(p: (A) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  9. final def repr: collection.mutable.IndexedSeq[A]
    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

  10. def reverseMap[B](f: (A) => B): collection.mutable.IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  11. def seq: View.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  12. final def toIterator: collection.Iterator[A]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  13. final def toStream: collection.immutable.Stream[A]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  14. final def toTraversable: collection.Traversable[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  15. final def transform(f: (A) => A): View.this.type
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapInPlace on an IndexedSeq instead

  16. final def union[B >: A](that: collection.Seq[B]): collection.mutable.IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

  17. def view(from: Int, until: Int): IndexedSeqView[A]
    Definition Classes
    IndexedSeqOps → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from TxnDebuggable

Inherited from collection.mutable.IndexedSeq[A]

Inherited from IndexedSeqOps[A, collection.mutable.IndexedSeq, collection.mutable.IndexedSeq[A]]

Inherited from collection.IndexedSeq[A]

Inherited from IndexedSeqOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]]

Inherited from collection.mutable.Seq[A]

Inherited from SeqOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]]

Inherited from collection.mutable.Cloneable[collection.mutable.IndexedSeq[A]]

Inherited from java.lang.Cloneable

Inherited from collection.Seq[A]

Inherited from Equals

Inherited from SeqOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]]

Inherited from PartialFunction[Int, A]

Inherited from (Int) => A

Inherited from collection.mutable.Iterable[A]

Inherited from collection.Iterable[A]

Inherited from IterableFactoryDefaults[A, [x]collection.mutable.IndexedSeq[x]]

Inherited from IterableOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]]

Inherited from IterableOnceOps[A, [_]collection.mutable.IndexedSeq[_], collection.mutable.IndexedSeq[A]]

Inherited from collection.IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Ungrouped