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() @HotSpotIntrinsicCandidate()
  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 >: Snapshot](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()
  36. def copyToArray[B >: Snapshot](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  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 find(p: (Snapshot) => Boolean): Option[Snapshot]
    Definition Classes
    IterableOnceOps
  55. def findLast(p: (Snapshot) => Boolean): Option[Snapshot]
    Definition Classes
    SeqOps
  56. def flatMap[B](f: (Snapshot) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  57. def flatten[B](implicit asIterable: (Snapshot) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  58. def fold[A1 >: Snapshot](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  59. def foldLeft[B](z: B)(op: (B, Snapshot) => B): B
    Definition Classes
    IterableOnceOps
  60. def foldRight[B](z: B)(op: (Snapshot, B) => B): B
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  61. def forall(p: (Snapshot) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  62. def foreach[U](f: (Snapshot) => U): Unit
    Definition Classes
    IterableOnceOps
  63. def fromSpecific(coll: IterableOnce[Snapshot]): IndexedSeq[Snapshot]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  64. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  65. def groupBy[K](f: (Snapshot) => K): Map[K, IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  66. def groupMap[K, B](key: (Snapshot) => K)(f: (Snapshot) => B): Map[K, IndexedSeq[B]]
    Definition Classes
    IterableOps
  67. def groupMapReduce[K, B](key: (Snapshot) => K)(f: (Snapshot) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  68. def grouped(size: Int): Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  69. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  70. def head: Snapshot
    Definition Classes
    IndexedSeqOps → IterableOps
  71. def headOption: Option[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOps
  72. def indexOf[B >: Snapshot](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  73. def indexOf[B >: Snapshot](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  74. def indexOfSlice[B >: Snapshot](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  75. def indexOfSlice[B >: Snapshot](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  76. def indexWhere(p: (Snapshot) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  77. def indexWhere(p: (Snapshot) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  78. def indices: Range
    Definition Classes
    SeqOps
  79. def init: IndexedSeq[Snapshot]
    Definition Classes
    IterableOps
  80. def inits: Iterator[IndexedSeq[Snapshot]]
    Definition Classes
    IterableOps
  81. def intersect[B >: Snapshot](that: Seq[B]): IndexedSeq[Snapshot]
    Definition Classes
    SeqOps
  82. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  83. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  84. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  85. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  86. def iterableFactory: SeqFactory[IndexedSeq]
    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  87. def iterator: Iterator[Snapshot]
    Definition Classes
    IndexedSeqOps → IterableOnce
  88. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  89. def last: Snapshot
    Definition Classes
    IndexedSeqOps → IterableOps
  90. def lastIndexOf[B >: Snapshot](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  91. def lastIndexOfSlice[B >: Snapshot](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  92. def lastIndexOfSlice[B >: Snapshot](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  93. def lastIndexWhere(p: (Snapshot) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  94. def lastIndexWhere(p: (Snapshot) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  95. def lastOption: Option[Snapshot]
    Definition Classes
    IterableOps
  96. def lazyZip[B](that: Iterable[B]): LazyZip2[Snapshot, B, SnapshotSeq.this.type]
    Definition Classes
    Iterable
  97. 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
  98. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  99. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  100. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  101. def lift: (Int) => Option[Snapshot]
    Definition Classes
    PartialFunction
  102. 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
    

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

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  8. final def prefixLength(p: (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 seq: SnapshotSeq.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

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

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