View

trait View[A] extends 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.

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.

trait IndexedSeq[A]
trait IndexedSeqOps[A, [T] =>> IndexedSeq[T], IndexedSeq[A]]
trait IndexedSeq[A]
trait IndexedSeqOps[A, [T] =>> IndexedSeq[T], IndexedSeq[A]]
trait Seq[A]
trait SeqOps[A, [T] =>> IndexedSeq[T], IndexedSeq[A]]
trait Cloneable[IndexedSeq[A]]
trait Cloneable
trait Seq[A]
trait Equals
trait SeqOps[A, [T] =>> IndexedSeq[T], IndexedSeq[A]]
trait PartialFunction[Int, A]
trait Int => A
trait Iterable[A]
trait Iterable[A]
trait IterableFactoryDefaults[A, [T] =>> IndexedSeq[T]]
trait IterableOps[A, [T] =>> IndexedSeq[T], IndexedSeq[A]]
trait IterableOnceOps[A, [T] =>> IndexedSeq[T], IndexedSeq[A]]
trait IterableOnce[A]
class Object
trait Matchable
class Any

Value members

Abstract methods

def apply(index: Int): A

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.

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.

def length: Int
def refViews: IndexedSeq[View[A]]

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

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

def tarray: TArray[A]

The TArray from which this view was created.

The TArray from which this view was created.

def update(index: Int, v: A): Unit

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.

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.

Inherited methods

@inline
final def ++[B >: A](suffix: IterableOnce[B]): IndexedSeq[B]
Inherited from
IterableOps
@inline
final override def ++:[B >: A](prefix: IterableOnce[B]): IndexedSeq[B]
Definition Classes
SeqOps -> IterableOps
Inherited from
SeqOps
@inline
final def +:[B >: A](elem: B): IndexedSeq[B]
Inherited from
SeqOps
@inline
final def :+[B >: A](elem: B): IndexedSeq[B]
Inherited from
SeqOps
@inline
final def :++[B >: A](suffix: IterableOnce[B]): IndexedSeq[B]
Inherited from
SeqOps
def `scala$collection$SeqOps$$super$concat`[B >: A](suffix: IterableOnce[B]): IndexedSeq[B]
Inherited from
SeqOps
Inherited from
SeqOps
Inherited from
SeqOps
Inherited from
Cloneable
@inline
final def addString(b: StringBuilder): StringBuilder
Inherited from
IterableOnceOps
@inline
final def addString(b: StringBuilder, sep: String): StringBuilder
Inherited from
IterableOnceOps
def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
Inherited from
IterableOnceOps
def andThen[C](k: PartialFunction[A, C]): PartialFunction[Int, C]
Inherited from
PartialFunction
override def andThen[C](k: A => C): PartialFunction[Int, C]
Definition Classes
PartialFunction -> Function1
Inherited from
PartialFunction
def appended[B >: A](elem: B): IndexedSeq[B]
Inherited from
SeqOps
def appendedAll[B >: A](suffix: IterableOnce[B]): IndexedSeq[B]
Inherited from
SeqOps
def applyOrElse[A1 <: Int, B1 >: A](x: A1, default: A1 => B1): B1
Inherited from
PartialFunction
def canEqual(that: Any): Boolean
Inherited from
Seq
override def clone(): IndexedSeq[A]
Definition Classes
SeqOps -> Cloneable -> Object
Inherited from
SeqOps
def collect[B](pf: PartialFunction[A, B]): IndexedSeq[B]
Inherited from
IterableOps
def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
Inherited from
IterableOnceOps
def combinations(n: Int): Iterator[IndexedSeq[A]]
Inherited from
SeqOps
def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, A]
Inherited from
PartialFunction
@unspecialized
def compose[A](g: A => Int): A => A
Inherited from
Function1
@inline
final override def concat[B >: A](suffix: IterableOnce[B]): IndexedSeq[B]
Definition Classes
SeqOps -> IterableOps
Inherited from
SeqOps
def contains[A1 >: A](elem: A1): Boolean
Inherited from
SeqOps
def containsSlice[B >: A](that: Seq[B]): Boolean
Inherited from
SeqOps
def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
Inherited from
IterableOnceOps
@deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
def copyToArray[B >: A](xs: Array[B], start: Int): Int
Inherited from
IterableOnceOps
@deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
def copyToArray[B >: A](xs: Array[B]): Int
Inherited from
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
Inherited from
IterableOnceOps
def corresponds[B](that: Seq[B])(p: (A, B) => Boolean): Boolean
Inherited from
SeqOps
def count(p: A => Boolean): Int
Inherited from
IterableOnceOps
def dbgStr: String

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.

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.

Inherited from
TxnDebuggable
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.

Inherited from
TxnDebuggable
def diff[B >: A](that: Seq[B]): IndexedSeq[A]
Inherited from
SeqOps
def distinct: IndexedSeq[A]
Inherited from
SeqOps
def distinctBy[B](f: A => B): IndexedSeq[A]
Inherited from
SeqOps
override def drop(n: Int): IndexedSeq[A]
Definition Classes
IndexedSeqOps -> IterableOps -> IterableOnceOps
Inherited from
IndexedSeqOps
override def dropRight(n: Int): IndexedSeq[A]
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from
IndexedSeqOps
def dropWhile(p: A => Boolean): IndexedSeq[A]
Inherited from
IterableOps
def elementWise: ElementWiseExtractor[Int, A]
Inherited from
PartialFunction
override def empty: IndexedSeq[A]
Definition Classes
IterableFactoryDefaults -> IterableOps
Inherited from
IterableFactoryDefaults
def endsWith[B >: A](that: Iterable[B]): Boolean
Inherited from
SeqOps
override def equals(o: Any): Boolean
Definition Classes
Seq -> Equals -> Any
Inherited from
Seq
def exists(p: A => Boolean): Boolean
Inherited from
IterableOnceOps
def filter(pred: A => Boolean): IndexedSeq[A]
Inherited from
IterableOps
def filterNot(pred: A => Boolean): IndexedSeq[A]
Inherited from
IterableOps
def find(p: A => Boolean): Option[A]
Inherited from
IterableOnceOps
def findLast(p: A => Boolean): Option[A]
Inherited from
SeqOps
def flatMap[B](f: A => IterableOnce[B]): IndexedSeq[B]
Inherited from
IterableOps
def flatten[B](asIterable: A => IterableOnce[B]): IndexedSeq[B]
Inherited from
IterableOps
def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
Inherited from
IterableOnceOps
def foldLeft[B](z: B)(op: (B, A) => B): B
Inherited from
IterableOnceOps
override def foldRight[B](z: B)(op: (A, B) => B): B
Definition Classes
IndexedSeqOps -> IterableOnceOps
Inherited from
IndexedSeqOps
def forall(p: A => Boolean): Boolean
Inherited from
IterableOnceOps
def foreach[U](f: A => U): Unit
Inherited from
IterableOnceOps
protected def fromSpecific(coll: IterableOnce[A]): IndexedSeq[A]
Inherited from
IterableFactoryDefaults
def groupBy[K](f: A => K): Map[K, IndexedSeq[A]]
Inherited from
IterableOps
def groupMap[K, B](key: A => K)(f: A => B): Map[K, IndexedSeq[B]]
Inherited from
IterableOps
def groupMapReduce[K, B](key: A => K)(f: A => B)(reduce: (B, B) => B): Map[K, B]
Inherited from
IterableOps
def grouped(size: Int): Iterator[IndexedSeq[A]]
Inherited from
IterableOps
override def hashCode(): Int
Definition Classes
Seq -> Any
Inherited from
Seq
override def head: A
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from
IndexedSeqOps
override def headOption: Option[A]
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from
IndexedSeqOps
@deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
def indexOf[B >: A](elem: B): Int
Inherited from
SeqOps
def indexOf[B >: A](elem: B, from: Int): Int
Inherited from
SeqOps
@deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
def indexOfSlice[B >: A](that: Seq[B]): Int
Inherited from
SeqOps
def indexOfSlice[B >: A](that: Seq[B], from: Int): Int
Inherited from
SeqOps
@deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
def indexWhere(p: A => Boolean): Int
Inherited from
SeqOps
def indexWhere(p: A => Boolean, from: Int): Int
Inherited from
SeqOps
def indices: Range
Inherited from
SeqOps
def init: IndexedSeq[A]
Inherited from
IterableOps
def inits: Iterator[IndexedSeq[A]]
Inherited from
IterableOps
def intersect[B >: A](that: Seq[B]): IndexedSeq[A]
Inherited from
SeqOps
def isDefinedAt(idx: Int): Boolean
Inherited from
SeqOps
override def isEmpty: Boolean
Definition Classes
SeqOps -> IterableOnceOps
Inherited from
SeqOps
override def isTraversableAgain: Boolean
Definition Classes
IterableOps -> IterableOnceOps
Inherited from
IterableOps
override def iterableFactory: SeqFactory[[T] =>> IndexedSeq[T]]
Definition Classes
IndexedSeq -> IndexedSeq -> Seq -> Seq -> Iterable -> Iterable -> IterableOps
Inherited from
IndexedSeq
def iterator: Iterator[A]
Inherited from
IndexedSeqOps
override def knownSize: Int
Definition Classes
IndexedSeqOps -> IterableOnce
Inherited from
IndexedSeqOps
override def last: A
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from
IndexedSeqOps
def lastIndexOf[B >: A](elem: B, end: Int): Int
Inherited from
SeqOps
@deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
def lastIndexOfSlice[B >: A](that: Seq[B]): Int
Inherited from
SeqOps
def lastIndexOfSlice[B >: A](that: Seq[B], end: Int): Int
Inherited from
SeqOps
@deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
def lastIndexWhere(p: A => Boolean): Int
Inherited from
SeqOps
def lastIndexWhere(p: A => Boolean, end: Int): Int
Inherited from
SeqOps
def lastOption: Option[A]
Inherited from
IterableOps
def lazyZip[B](that: Iterable[B]): LazyZip2[A, B, View[A]]
Inherited from
Iterable
final override def lengthCompare(that: Iterable[_]): Int
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
final override def lengthCompare(len: Int): Int
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
@inline
final def lengthIs: SizeCompareOps
Inherited from
SeqOps
def lift: Int => Option[A]
Inherited from
PartialFunction
override def map[B](f: A => B): IndexedSeq[B]
Definition Classes
IndexedSeqOps -> IterableOps -> IterableOnceOps
Inherited from
IndexedSeqOps
def mapInPlace(f: A => A): View[A]
Inherited from
IndexedSeqOps
def max[B >: A](ord: Ordering[B]): A
Inherited from
IterableOnceOps
def maxBy[B](f: A => B)(cmp: Ordering[B]): A
Inherited from
IterableOnceOps
def maxByOption[B](f: A => B)(cmp: Ordering[B]): Option[A]
Inherited from
IterableOnceOps
def maxOption[B >: A](ord: Ordering[B]): Option[A]
Inherited from
IterableOnceOps
def min[B >: A](ord: Ordering[B]): A
Inherited from
IterableOnceOps
def minBy[B](f: A => B)(cmp: Ordering[B]): A
Inherited from
IterableOnceOps
def minByOption[B](f: A => B)(cmp: Ordering[B]): Option[A]
Inherited from
IterableOnceOps
def minOption[B >: A](ord: Ordering[B]): Option[A]
Inherited from
IterableOnceOps
@inline
final def mkString: String
Inherited from
IterableOnceOps
@inline
final def mkString(sep: String): String
Inherited from
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String
Inherited from
IterableOnceOps
protected def newSpecificBuilder: Builder[A, IndexedSeq[A]]
Inherited from
IterableFactoryDefaults
@deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
def nonEmpty: Boolean
Inherited from
IterableOnceOps
def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
Inherited from
PartialFunction
def padTo[B >: A](len: Int, elem: B): IndexedSeq[B]
Inherited from
SeqOps
def partition(p: A => Boolean): (IndexedSeq[A], IndexedSeq[A])
Inherited from
IterableOps
def partitionMap[A1, A2](f: A => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
Inherited from
IterableOps
def patch[B >: A](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
Inherited from
SeqOps
def permutations: Iterator[IndexedSeq[A]]
Inherited from
SeqOps
override def prepended[B >: A](elem: B): IndexedSeq[B]
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
def prependedAll[B >: A](prefix: IterableOnce[B]): IndexedSeq[B]
Inherited from
SeqOps
def product[B >: A](num: Numeric[B]): B
Inherited from
IterableOnceOps
def reduce[B >: A](op: (B, B) => B): B
Inherited from
IterableOnceOps
def reduceLeft[B >: A](op: (B, A) => B): B
Inherited from
IterableOnceOps
def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
Inherited from
IterableOnceOps
def reduceOption[B >: A](op: (B, B) => B): Option[B]
Inherited from
IterableOnceOps
def reduceRight[B >: A](op: (A, B) => B): B
Inherited from
IterableOnceOps
def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
Inherited from
IterableOnceOps
override def reverse: IndexedSeq[A]
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
override def reverseIterator: Iterator[A]
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
override protected def reversed: Iterable[A]
Definition Classes
IndexedSeqOps -> IterableOnceOps
Inherited from
IndexedSeqOps
def runWith[U](action: A => U): Int => Boolean
Inherited from
PartialFunction
def sameElements[B >: A](that: IterableOnce[B]): Boolean
Inherited from
SeqOps
def scan[B >: A](z: B)(op: (B, B) => B): IndexedSeq[B]
Inherited from
IterableOps
def scanLeft[B](z: B)(op: (B, A) => B): IndexedSeq[B]
Inherited from
IterableOps
def scanRight[B](z: B)(op: (A, B) => B): IndexedSeq[B]
Inherited from
IterableOps
override def search[B >: A](elem: B, from: Int, to: Int)(ord: Ordering[B]): SearchResult
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
override def search[B >: A](elem: B)(ord: Ordering[B]): SearchResult
Definition Classes
IndexedSeqOps -> SeqOps
Inherited from
IndexedSeqOps
def segmentLength(p: A => Boolean, from: Int): Int
Inherited from
SeqOps
final def segmentLength(p: A => Boolean): Int
Inherited from
SeqOps
final override def size: Int
Definition Classes
SeqOps -> IterableOnceOps
Inherited from
SeqOps
final override def sizeCompare(that: Iterable[_]): Int
Definition Classes
SeqOps -> IterableOps
Inherited from
SeqOps
final override def sizeCompare(otherSize: Int): Int
Definition Classes
SeqOps -> IterableOps
Inherited from
SeqOps
@inline
final def sizeIs: SizeCompareOps
Inherited from
IterableOps
override def slice(from: Int, until: Int): IndexedSeq[A]
Definition Classes
IndexedSeqOps -> IterableOps -> IterableOnceOps
Inherited from
IndexedSeqOps
def sliding(size: Int, step: Int): Iterator[IndexedSeq[A]]
Inherited from
IterableOps
def sliding(size: Int): Iterator[IndexedSeq[A]]
Inherited from
IterableOps
def sortBy[B](f: A => B)(ord: Ordering[B]): IndexedSeq[A]
Inherited from
SeqOps
def sortInPlace[B >: A](ord: Ordering[B]): View[A]
Inherited from
IndexedSeqOps
def sortInPlaceBy[B](f: A => B)(ord: Ordering[B]): View[A]
Inherited from
IndexedSeqOps
def sortInPlaceWith(lt: (A, A) => Boolean): View[A]
Inherited from
IndexedSeqOps
def sortWith(lt: (A, A) => Boolean): IndexedSeq[A]
Inherited from
SeqOps
def sorted[B >: A](ord: Ordering[B]): IndexedSeq[A]
Inherited from
SeqOps
def span(p: A => Boolean): (IndexedSeq[A], IndexedSeq[A])
Inherited from
IterableOps
override def splitAt(n: Int): (IndexedSeq[A], IndexedSeq[A])
Definition Classes
IterableOps -> IterableOnceOps
Inherited from
IterableOps
def startsWith[B >: A](that: IterableOnce[B], offset: Int): Boolean
Inherited from
SeqOps
override def stepper[S <: Stepper[_]](shape: StepperShape[A, S]): S & EfficientSplit
Definition Classes
IndexedSeqOps -> IterableOnce
Inherited from
IndexedSeqOps
def sum[B >: A](num: Numeric[B]): B
Inherited from
IterableOnceOps
def tail: IndexedSeq[A]
Inherited from
IterableOps
def tails: Iterator[IndexedSeq[A]]
Inherited from
IterableOps
override def take(n: Int): IndexedSeq[A]
Definition Classes
IndexedSeqOps -> IterableOps -> IterableOnceOps
Inherited from
IndexedSeqOps
override def takeRight(n: Int): IndexedSeq[A]
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from
IndexedSeqOps
def takeWhile(p: A => Boolean): IndexedSeq[A]
Inherited from
IterableOps
override def tapEach[U](f: A => U): IndexedSeq[A]
Definition Classes
IterableOps -> IterableOnceOps
Inherited from
IterableOps
def to[C1](factory: Factory[A, C1]): C1
Inherited from
IterableOnceOps
def toArray[B >: A](ClassTag[B]): Array[B]
Inherited from
IterableOnceOps
@inline
final def toBuffer[B >: A]: Buffer[B]
Inherited from
IterableOnceOps
def toIndexedSeq: IndexedSeq[A]
Inherited from
IterableOnceOps
final def toIterable: View[A]
Inherited from
Iterable
def toList: List[A]
Inherited from
IterableOnceOps
def toMap[K, V](ev: A <:< (K, V)): Map[K, V]
Inherited from
IterableOnceOps
def toSeq: Seq[A]
Inherited from
IterableOnceOps
def toSet[B >: A]: Set[B]
Inherited from
IterableOnceOps
override def toString(): String
Definition Classes
Seq -> Function1 -> Iterable -> Any
Inherited from
Seq
def toVector: Vector[A]
Inherited from
IterableOnceOps
def transpose[B](asIterable: A => Iterable[B]): IndexedSeq[IndexedSeq[B]]
Inherited from
IterableOps
def unapply(a: Int): Option[A]
Inherited from
PartialFunction
def unzip[A1, A2](asPair: A => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
Inherited from
IterableOps
def unzip3[A1, A2, A3](asTriple: A => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
Inherited from
IterableOps
def updated[B >: A](index: Int, elem: B): IndexedSeq[B]
Inherited from
SeqOps
override def view: IndexedSeqView[A]
Definition Classes
IndexedSeqOps -> SeqOps -> IterableOps
Inherited from
IndexedSeqOps
def withFilter(p: A => Boolean): WithFilter[A, [T] =>> IndexedSeq[T]]
Inherited from
IterableOps
def zip[B](that: IterableOnce[B]): IndexedSeq[(A, B)]
Inherited from
IterableOps
def zipAll[A1 >: A, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
Inherited from
IterableOps
def zipWithIndex: IndexedSeq[(A, Int)]
Inherited from
IterableOps

Deprecated and Inherited methods

@inline @deprecated("Use foldLeft instead of /:", "2.13.0")
final def /:[B](z: B)(op: (B, A) => B): B
Deprecated
Inherited from
IterableOnceOps
@inline @deprecated("Use foldRight instead of :\\", "2.13.0")
final def :\[B](z: B)(op: (A, B) => B): B
Deprecated
Inherited from
IterableOnceOps
@deprecated("`aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.", "2.13.0")
def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
Deprecated
Inherited from
IterableOnceOps
@inline @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @deprecated("Use iterableFactory instead", "2.13.0")
def companion: IterableFactory[[T] =>> IndexedSeq[T]]
Deprecated
Inherited from
IterableOps
@inline @deprecated("Use `dest ++= coll` instead", "2.13.0")
final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
Deprecated
Inherited from
IterableOnceOps
@deprecated("Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)", "2.13.0")
def hasDefiniteSize: Boolean
Deprecated
Inherited from
IterableOnceOps
@inline @deprecated("Use segmentLength instead of prefixLength", "2.13.0")
final def prefixLength(p: A => Boolean): Int
Deprecated
Inherited from
SeqOps
@deprecated("Use coll instead of repr in a collection implementation, use the collection value itself from the outside", "2.13.0")
final def repr: IndexedSeq[A]
Deprecated
Inherited from
IterableOps
@deprecated("Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)", "2.13.0")
def reverseMap[B](f: A => B): IndexedSeq[B]
Deprecated
Inherited from
SeqOps
@deprecated("Iterable.seq always returns the iterable itself", "2.13.0")
def seq: View[A]
Deprecated
Inherited from
Iterable
@inline @deprecated("Use .iterator instead of .toIterator", "2.13.0")
final def toIterator: Iterator[A]
Deprecated
Inherited from
IterableOnceOps
@inline @deprecated("Use .to(LazyList) instead of .toStream", "2.13.0")
final def toStream: Stream[A]
Deprecated
Inherited from
IterableOnceOps
@deprecated("Use toIterable instead", "2.13.0")
final def toTraversable: Iterable[A]
Deprecated
Inherited from
IterableOps
@inline @deprecated("Use `mapInPlace` on an `IndexedSeq` instead", "2.13.0")
final def transform(f: A => A): View[A]
Deprecated
Inherited from
SeqOps
@inline @deprecated("Use `concat` instead", "2.13.0")
final def union[B >: A](that: Seq[B]): IndexedSeq[B]
Deprecated
Inherited from
SeqOps
@deprecated("Use .view.slice(from, until) instead of .view(from, until)", "2.13.0")
override def view(from: Int, until: Int): IndexedSeqView[A]
Deprecated
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from
IndexedSeqOps