final class SnapshotSeq extends IndexedSeq[Snapshot]

An IndexedSeq[Snapshot] providing toString and lines methods that can be useful for debug and log messages about program state.

See the main documentation for trait Snapshots for more information and examples.

Source
Snapshots.scala
Linear Supertypes
IndexedSeq[Snapshot], IndexedSeqOps[Snapshot, IndexedSeq, IndexedSeq[Snapshot]], IndexedSeq[Snapshot], IndexedSeqOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]], Seq[Snapshot], SeqOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]], Seq[Snapshot], Equals, SeqOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]], PartialFunction[Int, Snapshot], (Int) => Snapshot, Iterable[Snapshot], Iterable[Snapshot], IterableFactoryDefaults[Snapshot, [x]IndexedSeq[x]], IterableOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]], IterableOnceOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]], IterableOnce[Snapshot], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SnapshotSeq
  2. IndexedSeq
  3. IndexedSeqOps
  4. IndexedSeq
  5. IndexedSeqOps
  6. Seq
  7. SeqOps
  8. Seq
  9. Equals
  10. SeqOps
  11. PartialFunction
  12. Function1
  13. Iterable
  14. Iterable
  15. IterableFactoryDefaults
  16. IterableOps
  17. IterableOnceOps
  18. IterableOnce
  19. AnyRef
  20. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SnapshotSeq(underlying: IndexedSeq[Snapshot])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(value: Snapshot): SnapshotSeq

    Appends a string element to this sequence, if it doesn't already exist in the sequence.

    Appends a string element to this sequence, if it doesn't already exist in the sequence.

    If the string element already exists in this sequence, this method returns itself. If not, this method returns a new MultiSelOptionSeq with the passed value appended to the end of the original MultiSelOptionSeq.

    returns

    a MultiSelOptionSeq that contains the passed string value

  4. final def ++[B >: Snapshot](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ++:[B >: Snapshot](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  6. final def +:[B >: Snapshot](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. def -(value: Snapshot): SnapshotSeq

    Removes a string element to this sequence, if it already exists in the sequence.

    Removes a string element to this sequence, if it already exists in the sequence.

    If the string element does not already exist in this sequence, this method returns itself. If the element is contained in this sequence, this method returns a new MultiSelOptionSeq with the passed value removed from the the original MultiSelOptionSeq, leaving any other elements in the same order.

    returns

    a MultiSelOptionSeq that contains the passed string value

  8. final def :+[B >: Snapshot](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  9. final def :++[B >: Snapshot](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  12. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  14. def andThen[C](k: PartialFunction[Snapshot, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  15. def andThen[C](k: (Snapshot) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  16. def appended[B >: Snapshot](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  17. def appendedAll[B >: Snapshot](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  18. def apply(idx: Int): Snapshot

    Selects an element by its index in the sequence.

    Selects an element by its index in the sequence.

    This method invokes apply on the underlying immutable IndexedSeq[String], passing in idx, and returns the result.

    idx

    the index to select

    returns

    the element of this sequence at index idx, where 0 indicates the first element

    Definition Classes
    SnapshotSeq → SeqOps → Function1
  19. def applyOrElse[A1 <: Int, B1 >: Snapshot](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  20. def applyPreferredMaxLength: Int
    Attributes
    protected
    Definition Classes
    IndexedSeq
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. def canEqual(that: Any): Boolean
    Definition Classes
    IndexedSeq → Seq → Equals
  23. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  24. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  25. final def coll: SnapshotSeq.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  26. def collect[B](pf: PartialFunction[Snapshot, B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  27. def collectFirst[B](pf: PartialFunction[Snapshot, B]): Option[B]
    Definition Classes
    IterableOnceOps
  28. def combinations(n: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    SeqOps
  29. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Snapshot]
    Definition Classes
    PartialFunction
  30. def compose[A](g: (A) => Int): (A) => Snapshot
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  31. final def concat[B >: Snapshot](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  32. def contains[A1 >: Snapshot](elem: A1): Boolean
    Definition Classes
    SeqOps
  33. def containsSlice[B](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  34. def copyToArray[B >: Snapshot](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  35. def copyToArray[B >: Snapshot](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")
  36. def copyToArray[B >: Snapshot](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  37. def corresponds[B](that: Seq[B])(p: (Snapshot, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  38. def corresponds[B](that: IterableOnce[B])(p: (Snapshot, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  39. def count(p: (Snapshot) => Boolean): Int
    Definition Classes
    IterableOnceOps
  40. def diff[B >: Snapshot](that: Seq[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  41. def distinct: IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  42. def distinctBy[B](f: (Snapshot) => B): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  43. def drop(n: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  44. def dropRight(n: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps
  45. def dropWhile(p: (Snapshot) => Boolean): IndexedSeq[Snapshot]
    Definition Classes
    IterableOps → IterableOnceOps
  46. def elementWise: ElementWiseExtractor[Int, Snapshot]
    Definition Classes
    PartialFunction
  47. def empty: IndexedSeq[Snapshot]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  48. def endsWith[B >: Snapshot](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  49. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  50. def equals(o: Any): Boolean
    Definition Classes
    Seq → Equals → AnyRef → Any
  51. def exists(p: (Snapshot) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  52. def filter(pred: (Snapshot) => Boolean): IndexedSeq[Snapshot]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def filterNot(pred: (Snapshot) => Boolean): IndexedSeq[Snapshot]
    Definition Classes
    IterableOps → IterableOnceOps
  54. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  55. def find(p: (Snapshot) => Boolean): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  56. def findLast(p: (Snapshot) => Boolean): Option[Snapshot]
    Definition Classes
    SeqOps
  57. def flatMap[B](f: (Snapshot) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  58. def flatten[B](implicit asIterable: (Snapshot) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  59. def fold[A1 >: Snapshot](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  60. def foldLeft[B](z: B)(op: (B, Snapshot) => B): B
    Definition Classes
    IterableOnceOps
  61. def foldRight[B](z: B)(op: (Snapshot, B) => B): B
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  62. def forall(p: (Snapshot) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  63. def foreach[U](f: (Snapshot) => U): Unit
    Definition Classes
    IterableOnceOps
  64. def fromSpecific(coll: IterableOnce[Snapshot]): IndexedSeq[Snapshot]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  65. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  66. def groupBy[K](f: (Snapshot) => K): Map[K, IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  67. def groupMap[K, B](key: (Snapshot) => K)(f: (Snapshot) => B): Map[K, IndexedSeq[B]]
    Definition Classes
    IterableOps
  68. def groupMapReduce[K, B](key: (Snapshot) => K)(f: (Snapshot) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  69. def grouped(size: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  70. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  71. def head: Snapshot
    Definition Classes
    IndexedSeqOps → IterableOps
  72. def headOption: Option[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps
  73. def indexOf[B >: Snapshot](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  74. def indexOf[B >: Snapshot](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  75. def indexOfSlice[B >: Snapshot](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  76. def indexOfSlice[B >: Snapshot](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  77. def indexWhere(p: (Snapshot) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  78. def indexWhere(p: (Snapshot) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  79. def indices: Range
    Definition Classes
    SeqOps
  80. def init: IndexedSeq[Snapshot]
    Definition Classes
    IterableOps
  81. def inits: Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  82. def intersect[B >: Snapshot](that: Seq[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  83. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  84. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  85. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  86. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  87. def iterableFactory: SeqFactory[IndexedSeq]
    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  88. def iterator: Iterator[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOnce
  89. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  90. def last: Snapshot
    Definition Classes
    IndexedSeqOps → IterableOps
  91. def lastIndexOf[B >: Snapshot](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  92. def lastIndexOfSlice[B >: Snapshot](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  93. def lastIndexOfSlice[B >: Snapshot](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  94. def lastIndexWhere(p: (Snapshot) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  95. def lastIndexWhere(p: (Snapshot) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  96. def lastOption: Option[Snapshot]
    Definition Classes
    IterableOps
  97. def lazyZip[B](that: Iterable[B]): LazyZip2[Snapshot, B, SnapshotSeq.this.type]
    Definition Classes
    Iterable
  98. def length: Int

    The length of this sequence.

    The length of this sequence.

    This method invokes length on the underlying immutable IndexedSeq[String] and returns the result.

    returns

    the number of elements in this sequence

    Definition Classes
    SnapshotSeq → SeqOps
  99. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  100. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  101. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  102. def lift: (Int) => Option[Snapshot]
    Definition Classes
    PartialFunction
  103. def lines: String

    An alternate way to present the result of the snap method of trait Snapshots that puts each variable or expression on its own line.

    An alternate way to present the result of the snap method of trait Snapshots that puts each variable or expression on its own line.

    Here's an example:

    scala> snap(a, b, c, d, e, f).lines
    res4: String =
    a was 1
    b was 2
    c was 3
    d was 4
    e was null
    f was null
    

  104. def map[B](f: (Snapshot) => B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  105. def max[B >: Snapshot](implicit ord: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  106. def maxBy[B](f: (Snapshot) => B)(implicit cmp: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  107. def maxByOption[B](f: (Snapshot) => B)(implicit cmp: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  108. def maxOption[B >: Snapshot](implicit ord: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  109. def min[B >: Snapshot](implicit ord: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  110. def minBy[B](f: (Snapshot) => B)(implicit cmp: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  111. def minByOption[B](f: (Snapshot) => B)(implicit cmp: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  112. def minOption[B >: Snapshot](implicit ord: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  113. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  114. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  115. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  116. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  117. def newSpecificBuilder: Builder[Snapshot, IndexedSeq[Snapshot]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  118. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  119. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  120. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  121. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  122. def orElse[A1 <: Int, B1 >: Snapshot](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  123. def padTo[B >: Snapshot](len: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  124. def partition(p: (Snapshot) => Boolean): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])
    Definition Classes
    IterableOps
  125. def partitionMap[A1, A2](f: (Snapshot) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  126. def patch[B >: Snapshot](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
    Definition Classes
    SeqOps
  127. def permutations: Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    SeqOps
  128. def prepended[B >: Snapshot](elem: B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → SeqOps
  129. def prependedAll[B >: Snapshot](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  130. def product[B >: Snapshot](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  131. def reduce[B >: Snapshot](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  132. def reduceLeft[B >: Snapshot](op: (B, Snapshot) => B): B
    Definition Classes
    IterableOnceOps
  133. def reduceLeftOption[B >: Snapshot](op: (B, Snapshot) => B): Option[B]
    Definition Classes
    IterableOnceOps
  134. def reduceOption[B >: Snapshot](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  135. def reduceRight[B >: Snapshot](op: (Snapshot, B) => B): B
    Definition Classes
    IterableOnceOps
  136. def reduceRightOption[B >: Snapshot](op: (Snapshot, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  137. def reverse: IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → SeqOps
  138. def reverseIterator: Iterator[Snapshot]
    Definition Classes
    IndexedSeqOps → SeqOps
  139. def reversed: Iterable[Snapshot]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  140. def runWith[U](action: (Snapshot) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  141. def sameElements[B >: Snapshot](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  142. def scan[B >: Snapshot](z: B)(op: (B, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  143. def scanLeft[B](z: B)(op: (B, Snapshot) => B): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  144. def scanRight[B](z: B)(op: (Snapshot, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  145. def search[B >: Snapshot](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  146. def search[B >: Snapshot](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  147. def segmentLength(p: (Snapshot) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  148. final def segmentLength(p: (Snapshot) => Boolean): Int
    Definition Classes
    SeqOps
  149. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  150. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  151. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  152. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  153. def slice(from: Int, until: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  154. def sliding(size: Int, step: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  155. def sliding(size: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  156. def sortBy[B](f: (Snapshot) => B)(implicit ord: Ordering[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  157. def sortWith(lt: (Snapshot, Snapshot) => Boolean): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  158. def sorted[B >: Snapshot](implicit ord: Ordering[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  159. def span(p: (Snapshot) => Boolean): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])
    Definition Classes
    IterableOps → IterableOnceOps
  160. def splitAt(n: Int): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])
    Definition Classes
    IterableOps → IterableOnceOps
  161. def startsWith[B >: Snapshot](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  162. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Snapshot, S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  163. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    IndexedSeq → Seq → Iterable
    Annotations
    @nowarn()
  164. def sum[B >: Snapshot](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  165. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  166. def tail: IndexedSeq[Snapshot]
    Definition Classes
    IterableOps
  167. def tails: Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  168. def take(n: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  169. def takeRight(n: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps
  170. def takeWhile(p: (Snapshot) => Boolean): IndexedSeq[Snapshot]
    Definition Classes
    IterableOps → IterableOnceOps
  171. def tapEach[U](f: (Snapshot) => U): IndexedSeq[Snapshot]
    Definition Classes
    IterableOps → IterableOnceOps
  172. def to[C1](factory: Factory[Snapshot, C1]): C1
    Definition Classes
    IterableOnceOps
  173. def toArray[B >: Snapshot](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  174. final def toBuffer[B >: Snapshot]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  175. final def toIndexedSeq: IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeq → IterableOnceOps
  176. final def toIterable: SnapshotSeq.this.type
    Definition Classes
    Iterable → IterableOps
  177. def toList: List[Snapshot]
    Definition Classes
    IterableOnceOps
  178. def toMap[K, V](implicit ev: <:<[Snapshot, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  179. final def toSeq: SnapshotSeq.this.type
    Definition Classes
    Seq → IterableOnceOps
  180. def toSet[B >: Snapshot]: Set[B]
    Definition Classes
    IterableOnceOps
  181. def toString(): String

    The default way to present the result of the snap method of trait Snapshots.

    The default way to present the result of the snap method of trait Snapshots.

    Here's an example:

    scala> snap(a, b, c, d, e, f)
    res3: org.scalactic.SnapshotSeq = a was 1, b was 2, c was 3, d was 4, e was null, f was null
    

    Definition Classes
    SnapshotSeq → Seq → Function1 → Iterable → AnyRef → Any
  182. def toVector: Vector[Snapshot]
    Definition Classes
    IterableOnceOps
  183. def transpose[B](implicit asIterable: (Snapshot) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    IterableOps
  184. def unapply(a: Int): Option[Snapshot]
    Definition Classes
    PartialFunction
  185. def unzip[A1, A2](implicit asPair: (Snapshot) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  186. def unzip3[A1, A2, A3](implicit asTriple: (Snapshot) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    IterableOps
  187. def updated[B >: Snapshot](index: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  188. def view: IndexedSeqView[Snapshot]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  189. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  190. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  191. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  192. def withFilter(p: (Snapshot) => Boolean): WithFilter[Snapshot, [_]IndexedSeq[_]]
    Definition Classes
    IterableOps
  193. def zip[B](that: IterableOnce[B]): IndexedSeq[(Snapshot, B)]
    Definition Classes
    IterableOps
  194. def zipAll[A1 >: Snapshot, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
    Definition Classes
    IterableOps
  195. def zipWithIndex: IndexedSeq[(Snapshot, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, Snapshot) => 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: (Snapshot, 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, Snapshot) => 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[[_]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 >: Snapshot](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  6. 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)

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

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  8. final def repr: IndexedSeq[Snapshot]
    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

  9. def reverseMap[B](f: (Snapshot) => B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

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

  10. def seq: SnapshotSeq.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  11. final def toIterator: Iterator[Snapshot]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  12. final def toStream: Stream[Snapshot]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  13. final def toTraversable: Traversable[Snapshot]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  14. final def union[B >: Snapshot](that: Seq[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

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

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

Inherited from IndexedSeq[Snapshot]

Inherited from IndexedSeqOps[Snapshot, IndexedSeq, IndexedSeq[Snapshot]]

Inherited from IndexedSeq[Snapshot]

Inherited from IndexedSeqOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]]

Inherited from Seq[Snapshot]

Inherited from SeqOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]]

Inherited from Seq[Snapshot]

Inherited from Equals

Inherited from SeqOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]]

Inherited from PartialFunction[Int, Snapshot]

Inherited from (Int) => Snapshot

Inherited from Iterable[Snapshot]

Inherited from Iterable[Snapshot]

Inherited from IterableFactoryDefaults[Snapshot, [x]IndexedSeq[x]]

Inherited from IterableOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]]

Inherited from IterableOnceOps[Snapshot, [_]IndexedSeq[_], IndexedSeq[Snapshot]]

Inherited from IterableOnce[Snapshot]

Inherited from AnyRef

Inherited from Any

Ungrouped