Packages

class TableFor2[A, B] extends IndexedSeq[(A, B)] with IndexedSeqOps[(A, B), IndexedSeq, IndexedSeq[(A, B)]]

A table with 2 columns.

For an introduction to using tables, see the documentation for trait TableDrivenPropertyChecks.

This table is a sequence of Tuple2 objects, where each tuple represents one row of the table. The first element of each tuple comprise the first column of the table, the second element of each tuple comprise the second column, and so on. This table also carries with it a heading tuple that gives string names to the columns of the table.

A handy way to create a TableFor2 is via an apply factory method in the Table singleton object provided by the Tables trait. Here's an example:

val examples =
  Table(
    ("a", "b"),
 *     (  0,   0),
    (  1,   1),
    (  2,   2),
    (  3,   3),
    (  4,   4),
    (  5,   5),
    (  6,   6),
    (  7,   7),
    (  8,   8),
    (  9,   9)
  )

Because you supplied 2 members in each tuple, the type you'll get back will be a TableFor2.

The table provides an apply method that takes a function with a parameter list that matches the types and arity of the tuples contained in this table. The apply method will invoke the function with the members of each row tuple passed as arguments, in ascending order by index. (I.e., the zeroth tuple is checked first, then the tuple with index 1, then index 2, and so on until all the rows have been checked (or until a failure occurs). The function represents a property of the code under test that should succeed for every row of the table. If the function returns normally, that indicates the property check succeeded for that row. If the function completes abruptly with an exception, that indicates the property check failed and the apply method will complete abruptly with a TableDrivenPropertyCheckFailedException that wraps the exception thrown by the supplied property function.

The usual way you'd invoke the apply method that checks a property is via a forAll method provided by trait TableDrivenPropertyChecks. The forAll method takes a TableFor2 as its first argument, then in a curried argument list takes the property check function. It invokes apply on the TableFor2, passing in the property check function. Here's an example:

forAll (examples) { (a, b) =>
  a + b should equal (a * 2)
}

Because TableFor2 is a Seq[(A, B)], you can use it as a Seq. For example, here's how you could get a sequence of Outcomes for each row of the table, indicating whether a property check succeeded or failed on each row of the table:

for (row <- examples) yield {
  outcomeOf { row._1 should not equal (7) }
}

Note: the outcomeOf method, contained in the OutcomeOf trait, will execute the supplied code (a by-name parameter) and transform it to an Outcome. If no exception is thrown by the code, outcomeOf will result in a Succeeded, indicating the "property check" succeeded. If the supplied code completes abruptly in an exception that would normally cause a test to fail, outcomeOf will result in in a Failed instance containing that exception. For example, the previous for expression would give you:

Vector(Succeeded, Succeeded, Succeeded, Succeeded, Succeeded, Succeeded, Succeeded,
    Failed(org.scalatest.TestFailedException: 7 equaled 7), Succeeded, Succeeded)

This shows that all the property checks succeeded, except for the one at index 7.

Source
TableFor1.scala
Linear Supertypes
IndexedSeq[(A, B)], IndexedSeqOps[(A, B), IndexedSeq, IndexedSeq[(A, B)]], IndexedSeq[(A, B)], IndexedSeqOps[(A, B), [_]IndexedSeq[_], IndexedSeq[(A, B)]], Seq[(A, B)], SeqOps[(A, B), [_]IndexedSeq[_], IndexedSeq[(A, B)]], Seq[(A, B)], Equals, SeqOps[(A, B), [_]IndexedSeq[_], IndexedSeq[(A, B)]], PartialFunction[Int, (A, B)], (Int) => (A, B), Iterable[(A, B)], Iterable[(A, B)], IterableFactoryDefaults[(A, B), [x]IndexedSeq[x]], IterableOps[(A, B), [_]IndexedSeq[_], IndexedSeq[(A, B)]], IterableOnceOps[(A, B), [_]IndexedSeq[_], IndexedSeq[(A, B)]], IterableOnce[(A, B)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TableFor2
  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 TableFor2(heading: (String, String), rows: (A, B)*)

    heading

    a tuple containing string names of the columns in this table

    rows

    a variable length parameter list of Tuple2s containing the data of this table

Value Members

  1. def ++(others: Iterable[(A, B)]): TableFor2[A, B]
  2. final def ++[B >: (A, B)](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  3. final def ++:[B >: (A, B)](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  4. final def +:[B >: (A, B)](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  5. final def :+[B >: (A, B)](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  6. final def :++[B >: (A, B)](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  10. def andThen[C](k: PartialFunction[(A, B), C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  11. def andThen[C](k: ((A, B)) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  12. def appended[B >: (A, B)](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  13. def appendedAll[B >: (A, B)](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  14. def apply[ASSERTION](fun: (A, B) => ASSERTION)(implicit asserting: TableAsserting[ASSERTION], prettifier: Prettifier, pos: Position): Result

    Applies the passed property check function to each row of this TableFor2.

    Applies the passed property check function to each row of this TableFor2.

    If the property checks for all rows succeed (the property check function returns normally when passed the data for each row), this apply method returns normally. If the property check function completes abruptly with an exception for any row, this apply method wraps that exception in a TableDrivenPropertyCheckFailedException and completes abruptly with that exception. Once the property check function throws an exception for a row, this apply method will complete abruptly immediately and subsequent rows will not be checked against the function.

    fun

    the property check function to apply to each row of this TableFor2

  15. def apply(idx: Int): (A, B)

    Selects a row of data by its index.

    Selects a row of data by its index.

    Definition Classes
    TableFor2 → SeqOps → Function1
  16. def applyOrElse[A1 <: Int, B1 >: (A, B)](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  17. def canEqual(that: Any): Boolean
    Definition Classes
    IndexedSeq → Seq → Equals
  18. def collect[B](pf: PartialFunction[(A, B), B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  19. def collectFirst[B](pf: PartialFunction[(A, B), B]): Option[B]
    Definition Classes
    IterableOnceOps
  20. def combinations(n: Int): Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    SeqOps
  21. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, (A, B)]
    Definition Classes
    PartialFunction
  22. def compose[A](g: (A) => Int): (A) => (A, B)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  23. final def concat[B >: (A, B)](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  24. def contains[A1 >: (A, B)](elem: A1): Boolean
    Definition Classes
    SeqOps
  25. def containsSlice[B](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  26. def copyToArray[B >: (A, B)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  27. def copyToArray[B >: (A, B)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  28. def copyToArray[B >: (A, B)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  29. def corresponds[B](that: Seq[B])(p: ((A, B), B) => Boolean): Boolean
    Definition Classes
    SeqOps
  30. def corresponds[B](that: IterableOnce[B])(p: ((A, B), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  31. def count(p: ((A, B)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  32. def diff[B >: (A, B)](that: Seq[B]): IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  33. def distinct: IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  34. def distinctBy[B](f: ((A, B)) => B): IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  35. def drop(n: Int): IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  36. def dropRight(n: Int): IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeqOps → IterableOps
  37. def dropWhile(p: ((A, B)) => Boolean): IndexedSeq[(A, B)]
    Definition Classes
    IterableOps → IterableOnceOps
  38. def elementWise: ElementWiseExtractor[Int, (A, B)]
    Definition Classes
    PartialFunction
  39. def empty: IndexedSeq[(A, B)]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  40. def endsWith[B >: (A, B)](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  41. def equals(o: Any): Boolean
    Definition Classes
    Seq → Equals → AnyRef → Any
  42. def exists[ASSERTION](fun: (A, B) => ASSERTION)(implicit asserting: TableAsserting[ASSERTION], prettifier: Prettifier, pos: Position): Result
  43. def exists(p: ((A, B)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  44. def filter(p: ((A, B)) => Boolean): TableFor2[A, B]
    Definition Classes
    TableFor2 → IterableOps → IterableOnceOps
  45. def filterNot(pred: ((A, B)) => Boolean): IndexedSeq[(A, B)]
    Definition Classes
    IterableOps → IterableOnceOps
  46. def find(p: ((A, B)) => Boolean): Option[(A, B)]
    Definition Classes
    IterableOnceOps
  47. def findLast(p: ((A, B)) => Boolean): Option[(A, B)]
    Definition Classes
    SeqOps
  48. def flatMap[B](f: ((A, B)) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def flatten[B](implicit asIterable: ((A, B)) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def fold[A1 >: (A, B)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  51. def foldLeft[B](z: B)(op: (B, (A, B)) => B): B
    Definition Classes
    IterableOnceOps
  52. def foldRight[B](z: B)(op: ((A, B), B) => B): B
    Definition Classes
    IterableOnceOps
  53. def forEvery[ASSERTION](fun: (A, B) => ASSERTION)(implicit asserting: TableAsserting[ASSERTION], prettifier: Prettifier, pos: Position): Result
  54. def forall(p: ((A, B)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  55. def foreach[U](f: ((A, B)) => U): Unit
    Definition Classes
    IterableOnceOps
  56. def groupBy[K](f: ((A, B)) => K): Map[K, IndexedSeq[(A, B)]]
    Definition Classes
    IterableOps
  57. def groupMap[K, B](key: ((A, B)) => K)(f: ((A, B)) => B): Map[K, IndexedSeq[B]]
    Definition Classes
    IterableOps
  58. def groupMapReduce[K, B](key: ((A, B)) => K)(f: ((A, B)) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  59. def grouped(size: Int): Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    IterableOps
  60. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  61. def head: (A, B)
    Definition Classes
    IterableOps
  62. def headOption: Option[(A, B)]
    Definition Classes
    IterableOps
  63. val heading: (String, String)
  64. def indexOf[B >: (A, B)](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  65. def indexOf[B >: (A, B)](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  66. def indexOfSlice[B >: (A, B)](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  67. def indexOfSlice[B >: (A, B)](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  68. def indexWhere(p: ((A, B)) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  69. def indexWhere(p: ((A, B)) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  70. def indices: Range
    Definition Classes
    SeqOps
  71. def init: IndexedSeq[(A, B)]
    Definition Classes
    IterableOps
  72. def inits: Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    IterableOps
  73. def intersect[B >: (A, B)](that: Seq[B]): IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  74. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  75. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  76. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  77. def iterableFactory: SeqFactory[IndexedSeq]
    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  78. def iterator: Iterator[(A, B)]
    Definition Classes
    IndexedSeqOps → IterableOnce
  79. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  80. def last: (A, B)
    Definition Classes
    IndexedSeqOps → IterableOps
  81. def lastIndexOf[B >: (A, B)](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  82. def lastIndexOfSlice[B >: (A, B)](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  83. def lastIndexOfSlice[B >: (A, B)](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  84. def lastIndexWhere(p: ((A, B)) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  85. def lastIndexWhere(p: ((A, B)) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  86. def lastOption: Option[(A, B)]
    Definition Classes
    IterableOps
  87. def lazyZip[B](that: Iterable[B]): LazyZip2[(A, B), B, TableFor2.this.type]
    Definition Classes
    Iterable
  88. def length: Int

    The number of rows of data in the table.

    The number of rows of data in the table. (This does not include the heading tuple)

    Definition Classes
    TableFor2 → SeqOps
  89. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  90. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  91. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  92. def lift: (Int) => Option[(A, B)]
    Definition Classes
    PartialFunction
  93. def map[B](f: ((A, B)) => B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  94. def max[B >: (A, B)](implicit ord: Ordering[B]): (A, B)
    Definition Classes
    IterableOnceOps
  95. def maxBy[B](f: ((A, B)) => B)(implicit cmp: Ordering[B]): (A, B)
    Definition Classes
    IterableOnceOps
  96. def maxByOption[B](f: ((A, B)) => B)(implicit cmp: Ordering[B]): Option[(A, B)]
    Definition Classes
    IterableOnceOps
  97. def maxOption[B >: (A, B)](implicit ord: Ordering[B]): Option[(A, B)]
    Definition Classes
    IterableOnceOps
  98. def min[B >: (A, B)](implicit ord: Ordering[B]): (A, B)
    Definition Classes
    IterableOnceOps
  99. def minBy[B](f: ((A, B)) => B)(implicit cmp: Ordering[B]): (A, B)
    Definition Classes
    IterableOnceOps
  100. def minByOption[B](f: ((A, B)) => B)(implicit cmp: Ordering[B]): Option[(A, B)]
    Definition Classes
    IterableOnceOps
  101. def minOption[B >: (A, B)](implicit ord: Ordering[B]): Option[(A, B)]
    Definition Classes
    IterableOnceOps
  102. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  103. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  104. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  105. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  106. def orElse[A1 <: Int, B1 >: (A, B)](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  107. def padTo[B >: (A, B)](len: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  108. def partition(p: ((A, B)) => Boolean): (IndexedSeq[(A, B)], IndexedSeq[(A, B)])
    Definition Classes
    IterableOps
  109. def partitionMap[A1, A2](f: ((A, B)) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  110. def patch[B >: (A, B)](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
    Definition Classes
    SeqOps
  111. def permutations: Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    SeqOps
  112. def prepended[B >: (A, B)](elem: B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → SeqOps
  113. def prependedAll[B >: (A, B)](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  114. def product[B >: (A, B)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  115. def reduce[B >: (A, B)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  116. def reduceLeft[B >: (A, B)](op: (B, (A, B)) => B): B
    Definition Classes
    IterableOnceOps
  117. def reduceLeftOption[B >: (A, B)](op: (B, (A, B)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  118. def reduceOption[B >: (A, B)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  119. def reduceRight[B >: (A, B)](op: ((A, B), B) => B): B
    Definition Classes
    IterableOnceOps
  120. def reduceRightOption[B >: (A, B)](op: ((A, B), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  121. def reverse: IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeqOps → SeqOps
  122. def reverseIterator: Iterator[(A, B)]
    Definition Classes
    IndexedSeqOps → SeqOps
  123. def runWith[U](action: ((A, B)) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  124. def sameElements[B >: (A, B)](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  125. def scan[B >: (A, B)](z: B)(op: (B, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  126. def scanLeft[B](z: B)(op: (B, (A, B)) => B): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  127. def scanRight[B](z: B)(op: ((A, B), B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  128. def search[B >: (A, B)](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  129. def search[B >: (A, B)](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  130. def segmentLength(p: ((A, B)) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  131. final def segmentLength(p: ((A, B)) => Boolean): Int
    Definition Classes
    SeqOps
  132. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  133. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  134. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  135. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  136. def slice(from: Int, until: Int): IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  137. def sliding(size: Int, step: Int): Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    IterableOps
  138. def sliding(size: Int): Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    IterableOps
  139. def sortBy[B](f: ((A, B)) => B)(implicit ord: Ordering[B]): IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  140. def sortWith(lt: ((A, B), (A, B)) => Boolean): IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  141. def sorted[B >: (A, B)](implicit ord: Ordering[B]): IndexedSeq[(A, B)]
    Definition Classes
    SeqOps
  142. def span(p: ((A, B)) => Boolean): (IndexedSeq[(A, B)], IndexedSeq[(A, B)])
    Definition Classes
    IterableOps → IterableOnceOps
  143. def splitAt(n: Int): (IndexedSeq[(A, B)], IndexedSeq[(A, B)])
    Definition Classes
    IterableOps → IterableOnceOps
  144. def startsWith[B >: (A, B)](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  145. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(A, B), S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  146. def sum[B >: (A, B)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  147. def tail: IndexedSeq[(A, B)]
    Definition Classes
    IterableOps
  148. def tails: Iterator[IndexedSeq[(A, B)]]
    Definition Classes
    IterableOps
  149. def take(n: Int): IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  150. def takeRight(n: Int): IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeqOps → IterableOps
  151. def takeWhile(p: ((A, B)) => Boolean): IndexedSeq[(A, B)]
    Definition Classes
    IterableOps → IterableOnceOps
  152. def tapEach[U](f: ((A, B)) => U): IndexedSeq[(A, B)]
    Definition Classes
    IterableOps → IterableOnceOps
  153. def to[C1](factory: Factory[(A, B), C1]): C1
    Definition Classes
    IterableOnceOps
  154. def toArray[B >: (A, B)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  155. final def toBuffer[B >: (A, B)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  156. final def toIndexedSeq: IndexedSeq[(A, B)]
    Definition Classes
    IndexedSeq → IterableOnceOps
  157. final def toIterable: TableFor2.this.type
    Definition Classes
    Iterable → IterableOps
  158. def toList: List[(A, B)]
    Definition Classes
    IterableOnceOps
  159. def toMap[K, V](implicit ev: <:<[(A, B), (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  160. final def toSeq: TableFor2.this.type
    Definition Classes
    Seq → IterableOnceOps
  161. def toSet[B >: (A, B)]: Set[B]
    Definition Classes
    IterableOnceOps
  162. def toString(): String

    A string representation of this object, which includes the heading strings as well as the rows of data.

    A string representation of this object, which includes the heading strings as well as the rows of data.

    Definition Classes
    TableFor2 → Seq → Function1 → Iterable → AnyRef → Any
  163. def toVector: Vector[(A, B)]
    Definition Classes
    IterableOnceOps
  164. def transpose[B](implicit asIterable: ((A, B)) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    IterableOps
  165. def unapply(a: Int): Option[(A, B)]
    Definition Classes
    PartialFunction
  166. def unzip[A1, A2](implicit asPair: ((A, B)) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  167. def unzip3[A1, A2, A3](implicit asTriple: ((A, B)) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    IterableOps
  168. def updated[B >: (A, B)](index: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  169. def view: IndexedSeqView[(A, B)]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  170. def withFilter(p: ((A, B)) => Boolean): WithFilter[(A, B), [_]IndexedSeq[_]]
    Definition Classes
    IterableOps
  171. def zip[B](that: IterableOnce[B]): IndexedSeq[((A, B), B)]
    Definition Classes
    IterableOps
  172. def zipAll[A1 >: (A, B), B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
    Definition Classes
    IterableOps
  173. def zipWithIndex: IndexedSeq[((A, B), Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, (A, B)) => 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: ((A, B), 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, (A, B)) => 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 >: (A, B)](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: ((A, B)) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  8. final def repr: IndexedSeq[(A, B)]
    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: ((A, B)) => 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: TableFor2.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[(A, B)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  13. final def toTraversable: Traversable[(A, B)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  14. final def union[B >: (A, B)](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[(A, B)]
    Definition Classes
    IndexedSeqOps → IterableOps
    Annotations
    @deprecated
    Deprecated

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