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], Serializable, Serializable, 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. Serializable
  16. Serializable
  17. IterableOps
  18. IterableOnceOps
  19. IterableOnce
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

Type Members

  1. type IterableCC[X] = IndexedSeq[X]
    Attributes
    protected
    Definition Classes
    IterableOps

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

  96. def map[B](f: (Snapshot) ⇒ B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  97. def max[B >: Snapshot](implicit ord: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  98. def maxBy[B](f: (Snapshot) ⇒ B)(implicit cmp: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  99. def maxByOption[B](f: (Snapshot) ⇒ B)(implicit cmp: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  100. def maxOption[B >: Snapshot](implicit ord: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  101. def min[B >: Snapshot](implicit ord: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  102. def minBy[B](f: (Snapshot) ⇒ B)(implicit cmp: Ordering[B]): Snapshot
    Definition Classes
    IterableOnceOps
  103. def minByOption[B](f: (Snapshot) ⇒ B)(implicit cmp: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  104. def minOption[B >: Snapshot](implicit ord: Ordering[B]): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  105. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  106. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  107. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  108. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  109. def newSpecificBuilder: Builder[Snapshot, IterableCC[Snapshot]]
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  110. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  111. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  112. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  113. def orElse[A1 <: Int, B1 >: Snapshot](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  114. def padTo[B >: Snapshot](len: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  115. def partition(p: (Snapshot) ⇒ Boolean): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])
    Definition Classes
    IterableOps
  116. def partitionWith[A1, A2](f: (Snapshot) ⇒ Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  117. def patch[B >: Snapshot](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
    Definition Classes
    SeqOps
  118. def permutations: Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    SeqOps
  119. def prepended[B >: Snapshot](elem: B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → SeqOps
  120. def prependedAll[B >: Snapshot](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  121. def product[B >: Snapshot](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  122. def reduce[B >: Snapshot](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  123. def reduceLeft[B >: Snapshot](op: (B, Snapshot) ⇒ B): B
    Definition Classes
    IterableOnceOps
  124. def reduceLeftOption[B >: Snapshot](op: (B, Snapshot) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  125. def reduceOption[B >: Snapshot](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  126. def reduceRight[B >: Snapshot](op: (Snapshot, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  127. def reduceRightOption[B >: Snapshot](op: (Snapshot, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  128. def reverse: IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → SeqOps
  129. def reverseIterator: Iterator[Snapshot]
    Definition Classes
    IndexedSeqOps → SeqOps
  130. def reversed: Iterable[Snapshot]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  131. def runWith[U](action: (Snapshot) ⇒ U): (Int) ⇒ Boolean
    Definition Classes
    PartialFunction
  132. def sameElements[B >: Snapshot](that: IterableOnce[B]): Boolean
    Definition Classes
    SeqOps
  133. def scanLeft[B](z: B)(op: (B, Snapshot) ⇒ B): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  134. def scanRight[B](z: B)(op: (Snapshot, B) ⇒ B): IndexedSeq[B]
    Definition Classes
    IterableOps
  135. def search[B >: Snapshot](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  136. def search[B >: Snapshot](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  137. def segmentLength(p: (Snapshot) ⇒ Boolean, from: Int): Int
    Definition Classes
    SeqOps
  138. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  139. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → IterableOps
  140. final def sizeCompare(_size: Int): Int
    Definition Classes
    SeqOps → IterableOps
  141. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  142. def slice(from: Int, until: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  143. def sliding(size: Int, step: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  144. def sliding(size: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  145. def sortBy[B](f: (Snapshot) ⇒ B)(implicit ord: Ordering[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  146. def sortWith(lt: (Snapshot, Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  147. def sorted[B >: Snapshot](implicit ord: Ordering[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  148. def span(p: (Snapshot) ⇒ Boolean): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])
    Definition Classes
    IterableOps → IterableOnceOps
  149. def splitAt(n: Int): (IndexedSeq[Snapshot], IndexedSeq[Snapshot])
    Definition Classes
    IterableOps
  150. def startsWith[B >: Snapshot](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  151. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    IndexedSeq → Seq → Iterable
  152. def sum[B >: Snapshot](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  153. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  154. def tail: IndexedSeq[Snapshot]
    Definition Classes
    IterableOps
  155. def tails: Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  156. def take(n: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  157. def takeRight(n: Int): IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps
  158. def takeWhile(p: (Snapshot) ⇒ Boolean): IndexedSeq[Snapshot]
    Definition Classes
    IterableOps → IterableOnceOps
  159. def to[C1](factory: Factory[Snapshot, C1]): C1
    Definition Classes
    IterableOnceOps
  160. def toArray[B >: Snapshot](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  161. final def toBuffer[B >: Snapshot]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  162. final def toIndexedSeq: IndexedSeq[Snapshot]
    Definition Classes
    IndexedSeq → IterableOnceOps
  163. final def toIterable: SnapshotSeq.this.type
    Definition Classes
    Iterable → IterableOps
  164. def toList: List[Snapshot]
    Definition Classes
    IterableOnceOps
  165. def toMap[K, V](implicit ev: <:<[Snapshot, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  166. final def toSeq: SnapshotSeq.this.type
    Definition Classes
    Seq → IterableOnceOps
  167. def toSet[B >: Snapshot]: Set[B]
    Definition Classes
    IterableOnceOps
  168. 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
  169. def toVector: Vector[Snapshot]
    Definition Classes
    IterableOnceOps
  170. def transpose[B](implicit asIterable: (Snapshot) ⇒ Iterable[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    IterableOps
  171. def unzip[A1, A2](implicit asPair: (Snapshot) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  172. def unzip3[A1, A2, A3](implicit asTriple: (Snapshot) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    IterableOps
  173. def updated[B >: Snapshot](index: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  174. def view: IndexedSeqView[Snapshot]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  175. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  176. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  177. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  178. def withFilter(p: (Snapshot) ⇒ Boolean): WithFilter[Snapshot, [_]IndexedSeq[_]]
    Definition Classes
    IterableOps
  179. def writeReplace(): AnyRef
    Attributes
    protected[this]
    Definition Classes
    Iterable
  180. def zip[B](that: IterableOnce[B]): IndexedSeq[(Snapshot, B)]
    Definition Classes
    IterableOps
  181. def zipAll[A1 >: Snapshot, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
    Definition Classes
    IterableOps
  182. 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[IterableCC]
    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 fold[A1 >: Snapshot](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use foldLeft instead

  7. final def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  8. final def prefixLength(p: (Snapshot) ⇒ Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  9. 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

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

  11. def scan[B >: Snapshot](z: B)(op: (B, B) ⇒ B): IndexedSeq[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use scanLeft instead

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

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

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

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

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

    (Since version 2.13.0) Use concat instead

  17. final def view(from: Int, until: Int): View[Snapshot]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    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 Serializable

Inherited from Serializable

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