org.scalactic

SnapshotSeq

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.

Linear Supertypes
IndexedSeq[Snapshot], IndexedSeq[Snapshot], IndexedSeqLike[Snapshot, IndexedSeq[Snapshot]], Seq[Snapshot], Seq[Snapshot], SeqLike[Snapshot, IndexedSeq[Snapshot]], GenSeq[Snapshot], GenSeqLike[Snapshot, IndexedSeq[Snapshot]], PartialFunction[Int, Snapshot], (Int) ⇒ Snapshot, Iterable[Snapshot], Iterable[Snapshot], IterableLike[Snapshot, IndexedSeq[Snapshot]], Equals, GenIterable[Snapshot], GenIterableLike[Snapshot, IndexedSeq[Snapshot]], Traversable[Snapshot], Immutable, Traversable[Snapshot], GenTraversable[Snapshot], GenericTraversableTemplate[Snapshot, IndexedSeq], TraversableLike[Snapshot, IndexedSeq[Snapshot]], GenTraversableLike[Snapshot, IndexedSeq[Snapshot]], Parallelizable[Snapshot, ParSeq[Snapshot]], TraversableOnce[Snapshot], GenTraversableOnce[Snapshot], FilterMonadic[Snapshot, IndexedSeq[Snapshot]], HasNewBuilder[Snapshot, scala.collection.immutable.IndexedSeq[org.scalactic.Snapshot] @scala.annotation.unchecked.uncheckedVariance], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SnapshotSeq
  2. IndexedSeq
  3. IndexedSeq
  4. IndexedSeqLike
  5. Seq
  6. Seq
  7. SeqLike
  8. GenSeq
  9. GenSeqLike
  10. PartialFunction
  11. Function1
  12. Iterable
  13. Iterable
  14. IterableLike
  15. Equals
  16. GenIterable
  17. GenIterableLike
  18. Traversable
  19. Immutable
  20. Traversable
  21. GenTraversable
  22. GenericTraversableTemplate
  23. TraversableLike
  24. GenTraversableLike
  25. Parallelizable
  26. TraversableOnce
  27. GenTraversableOnce
  28. FilterMonadic
  29. HasNewBuilder
  30. AnyRef
  31. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable

    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID( 1756321872811029277L )
  2. type Self = IndexedSeq[Snapshot]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. 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

  5. def ++[B >: Snapshot, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: Snapshot, That](that: Traversable[B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike
  7. def ++:[B >: Snapshot, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike
  8. def +:[B >: Snapshot, That](elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  9. 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

  10. def /:[B](z: B)(op: (B, Snapshot) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. def :+[B >: Snapshot, That](elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  12. def :\[B](z: B)(op: (Snapshot, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  15. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  17. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  18. def aggregate[B](z: B)(seqop: (B, Snapshot) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. def andThen[C](k: (Snapshot) ⇒ C): PartialFunction[Int, C]

    Definition Classes
    PartialFunction → Function1
  20. 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 → SeqLike → GenSeqLike → Function1
  21. def applyOrElse[A1 <: Int, B1 >: Snapshot](x: A1, default: (A1) ⇒ B1): B1

    Definition Classes
    PartialFunction
  22. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  23. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  24. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. def collect[B, That](pf: PartialFunction[Snapshot, B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  26. def collectFirst[B](pf: PartialFunction[Snapshot, B]): Option[B]

    Definition Classes
    TraversableOnce
  27. def combinations(n: Int): Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    SeqLike
  28. def companion: GenericCompanion[IndexedSeq]

    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  29. def compose[A](g: (A) ⇒ Int): (A) ⇒ Snapshot

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  30. def contains(elem: Any): Boolean

    Definition Classes
    SeqLike
  31. def containsSlice[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike
  32. def copyToArray[B >: Snapshot](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  33. def copyToArray[B >: Snapshot](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def copyToArray[B >: Snapshot](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  35. def copyToBuffer[B >: Snapshot](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  36. def corresponds[B](that: GenSeq[B])(p: (Snapshot, B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  37. def count(p: (Snapshot) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def diff[B >: Snapshot](that: GenSeq[B]): IndexedSeq[Snapshot]

    Definition Classes
    SeqLike → GenSeqLike
  39. def distinct: IndexedSeq[Snapshot]

    Definition Classes
    SeqLike → GenSeqLike
  40. def drop(n: Int): IndexedSeq[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  41. def dropRight(n: Int): IndexedSeq[Snapshot]

    Definition Classes
    IterableLike
  42. def dropWhile(p: (Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  43. def endsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  44. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  45. def equals(that: Any): Boolean

    Definition Classes
    GenSeqLike → Equals → Any
  46. def exists(p: (Snapshot) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  47. def filter(p: (Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  48. def filterNot(p: (Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  49. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  50. def find(p: (Snapshot) ⇒ Boolean): Option[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  51. def flatMap[B, That](f: (Snapshot) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  52. def flatten[B](implicit asTraversable: (Snapshot) ⇒ GenTraversableOnce[B]): IndexedSeq[B]

    Definition Classes
    GenericTraversableTemplate
  53. def fold[A1 >: Snapshot](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  54. def foldLeft[B](z: B)(op: (B, Snapshot) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  55. def foldRight[B](z: B)(op: (Snapshot, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  56. def forall(p: (Snapshot) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  57. def foreach[U](f: (Snapshot) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  58. def genericBuilder[B]: Builder[B, IndexedSeq[B]]

    Definition Classes
    GenericTraversableTemplate
  59. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  60. def groupBy[K](f: (Snapshot) ⇒ K): Map[K, IndexedSeq[Snapshot]]

    Definition Classes
    TraversableLike → GenTraversableLike
  61. def grouped(size: Int): Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    IterableLike
  62. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  63. def hashCode(): Int

    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  64. def head: Snapshot

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  65. def headOption: Option[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  66. def indexOf[B >: Snapshot](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  67. def indexOf[B >: Snapshot](elem: B): Int

    Definition Classes
    GenSeqLike
  68. def indexOfSlice[B >: Snapshot](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  69. def indexOfSlice[B >: Snapshot](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  70. def indexWhere(p: (Snapshot) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  71. def indexWhere(p: (Snapshot) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  72. def indices: Range

    Definition Classes
    SeqLike
  73. def init: IndexedSeq[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  74. def inits: Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    TraversableLike
  75. def intersect[B >: Snapshot](that: GenSeq[B]): IndexedSeq[Snapshot]

    Definition Classes
    SeqLike → GenSeqLike
  76. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  77. def isEmpty: Boolean

    Definition Classes
    SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  78. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  79. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  80. def iterator: Iterator[Snapshot]

    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  81. def last: Snapshot

    Definition Classes
    TraversableLike → GenTraversableLike
  82. def lastIndexOf[B >: Snapshot](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  83. def lastIndexOf[B >: Snapshot](elem: B): Int

    Definition Classes
    GenSeqLike
  84. def lastIndexOfSlice[B >: Snapshot](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  85. def lastIndexOfSlice[B >: Snapshot](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  86. def lastIndexWhere(p: (Snapshot) ⇒ Boolean, end: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  87. def lastIndexWhere(p: (Snapshot) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  88. def lastOption: Option[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  89. 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 → SeqLike → GenSeqLike
  90. def lengthCompare(len: Int): Int

    Definition Classes
    SeqLike
  91. def lift: (Int) ⇒ Option[Snapshot]

    Definition Classes
    PartialFunction
  92. 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
    

  93. def map[B, That](f: (Snapshot) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  94. def max[B >: Snapshot](implicit cmp: Ordering[B]): Snapshot

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def maxBy[B](f: (Snapshot) ⇒ B)(implicit cmp: Ordering[B]): Snapshot

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def min[B >: Snapshot](implicit cmp: Ordering[B]): Snapshot

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def minBy[B](f: (Snapshot) ⇒ B)(implicit cmp: Ordering[B]): Snapshot

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  102. def newBuilder: Builder[Snapshot, IndexedSeq[Snapshot]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  103. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. final def notify(): Unit

    Definition Classes
    AnyRef
  105. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  106. def orElse[A1 <: Int, B1 >: Snapshot](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Definition Classes
    PartialFunction
  107. def padTo[B >: Snapshot, That](len: Int, elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  108. def par: ParSeq[Snapshot]

    Definition Classes
    Parallelizable
  109. def parCombiner: Combiner[Snapshot, ParSeq[Snapshot]]

    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  110. def partition(p: (Snapshot) ⇒ Boolean): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])

    Definition Classes
    TraversableLike → GenTraversableLike
  111. def patch[B >: Snapshot, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  112. def permutations: Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    SeqLike
  113. def prefixLength(p: (Snapshot) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  114. def product[B >: Snapshot](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def reduce[A1 >: Snapshot](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def reduceLeft[B >: Snapshot](op: (B, Snapshot) ⇒ B): B

    Definition Classes
    TraversableOnce
  117. def reduceLeftOption[B >: Snapshot](op: (B, Snapshot) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def reduceOption[A1 >: Snapshot](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def reduceRight[B >: Snapshot](op: (Snapshot, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  120. def reduceRightOption[B >: Snapshot](op: (Snapshot, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def repr: IndexedSeq[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  122. def reverse: IndexedSeq[Snapshot]

    Definition Classes
    SeqLike → GenSeqLike
  123. def reverseIterator: Iterator[Snapshot]

    Definition Classes
    SeqLike
  124. def reverseMap[B, That](f: (Snapshot) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  125. def reversed: List[Snapshot]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  126. def runWith[U](action: (Snapshot) ⇒ U): (Int) ⇒ Boolean

    Definition Classes
    PartialFunction
  127. def sameElements[B >: Snapshot](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  128. def scan[B >: Snapshot, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  129. def scanLeft[B, That](z: B)(op: (B, Snapshot) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  130. def scanRight[B, That](z: B)(op: (Snapshot, B) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  131. def segmentLength(p: (Snapshot) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  132. def seq: IndexedSeq[Snapshot]

    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  133. def size: Int

    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  134. def slice(from: Int, until: Int): IndexedSeq[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  135. def sliding(size: Int, step: Int): Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    IterableLike
  136. def sliding(size: Int): Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    IterableLike
  137. def sortBy[B](f: (Snapshot) ⇒ B)(implicit ord: Ordering[B]): IndexedSeq[Snapshot]

    Definition Classes
    SeqLike
  138. def sortWith(lt: (Snapshot, Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]

    Definition Classes
    SeqLike
  139. def sorted[B >: Snapshot](implicit ord: Ordering[B]): IndexedSeq[Snapshot]

    Definition Classes
    SeqLike
  140. def span(p: (Snapshot) ⇒ Boolean): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])

    Definition Classes
    TraversableLike → GenTraversableLike
  141. def splitAt(n: Int): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])

    Definition Classes
    TraversableLike → GenTraversableLike
  142. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  143. def startsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    GenSeqLike
  144. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  145. def sum[B >: Snapshot](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  146. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  147. def tail: IndexedSeq[Snapshot]

    Definition Classes
    TraversableLike → GenTraversableLike
  148. def tails: Iterator[IndexedSeq[Snapshot]]

    Definition Classes
    TraversableLike
  149. def take(n: Int): IndexedSeq[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  150. def takeRight(n: Int): IndexedSeq[Snapshot]

    Definition Classes
    IterableLike
  151. def takeWhile(p: (Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  152. def thisCollection: IndexedSeq[Snapshot]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  153. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Snapshot, Col[Snapshot]]): Col[Snapshot]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  154. def toArray[B >: Snapshot](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def toBuffer[A1 >: Snapshot]: Buffer[A1]

    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  156. def toCollection(repr: IndexedSeq[Snapshot]): IndexedSeq[Snapshot]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  157. def toIndexedSeq: IndexedSeq[Snapshot]

    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
  158. def toIterable: Iterable[Snapshot]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  159. def toIterator: Iterator[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  160. def toList: List[Snapshot]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def toMap[T, U](implicit ev: <:<[Snapshot, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  162. def toSeq: Seq[Snapshot]

    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  163. def toSet[B >: Snapshot]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def toStream: Stream[Snapshot]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  165. 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 → SeqLike → Function1 → TraversableLike → AnyRef → Any
  166. def toTraversable: Traversable[Snapshot]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  167. def toVector: Vector[Snapshot]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def transpose[B](implicit asTraversable: (Snapshot) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  169. def union[B >: Snapshot, That](that: GenSeq[B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  170. def unzip[A1, A2](implicit asPair: (Snapshot) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])

    Definition Classes
    GenericTraversableTemplate
  171. def unzip3[A1, A2, A3](implicit asTriple: (Snapshot) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])

    Definition Classes
    GenericTraversableTemplate
  172. def updated[B >: Snapshot, That](index: Int, elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  173. def view(from: Int, until: Int): SeqView[Snapshot, IndexedSeq[Snapshot]]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  174. def view: SeqView[Snapshot, IndexedSeq[Snapshot]]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  175. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  176. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  177. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  178. def withFilter(p: (Snapshot) ⇒ Boolean): FilterMonadic[Snapshot, IndexedSeq[Snapshot]]

    Definition Classes
    TraversableLike → FilterMonadic
  179. def zip[A1 >: Snapshot, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  180. def zipAll[B, A1 >: Snapshot, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[IndexedSeq[Snapshot], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  181. def zipWithIndex[A1 >: Snapshot, That](implicit bf: CanBuildFrom[IndexedSeq[Snapshot], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike

Deprecated Value Members

  1. def /:\[A1 >: Snapshot](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

Inherited from IndexedSeq[Snapshot]

Inherited from IndexedSeq[Snapshot]

Inherited from IndexedSeqLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from Seq[Snapshot]

Inherited from Seq[Snapshot]

Inherited from SeqLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from GenSeq[Snapshot]

Inherited from GenSeqLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from PartialFunction[Int, Snapshot]

Inherited from (Int) ⇒ Snapshot

Inherited from Iterable[Snapshot]

Inherited from Iterable[Snapshot]

Inherited from IterableLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from Equals

Inherited from GenIterable[Snapshot]

Inherited from GenIterableLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from Traversable[Snapshot]

Inherited from Immutable

Inherited from Traversable[Snapshot]

Inherited from GenTraversable[Snapshot]

Inherited from GenericTraversableTemplate[Snapshot, IndexedSeq]

Inherited from TraversableLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from GenTraversableLike[Snapshot, IndexedSeq[Snapshot]]

Inherited from Parallelizable[Snapshot, ParSeq[Snapshot]]

Inherited from TraversableOnce[Snapshot]

Inherited from GenTraversableOnce[Snapshot]

Inherited from FilterMonadic[Snapshot, IndexedSeq[Snapshot]]

Inherited from HasNewBuilder[Snapshot, scala.collection.immutable.IndexedSeq[org.scalactic.Snapshot] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Ungrouped