org.scalatest.prop

TableFor13

class TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M] extends IndexedSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)] with IndexedSeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

A table with 13 columns.

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

This table is a sequence of Tuple13 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 TableFor13 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", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m"),
 *     (  0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0),
    (  1,   1,   1,   1,   1,   1,   1,   1,   1,   1,   1,   1,   1),
    (  2,   2,   2,   2,   2,   2,   2,   2,   2,   2,   2,   2,   2),
    (  3,   3,   3,   3,   3,   3,   3,   3,   3,   3,   3,   3,   3),
    (  4,   4,   4,   4,   4,   4,   4,   4,   4,   4,   4,   4,   4),
    (  5,   5,   5,   5,   5,   5,   5,   5,   5,   5,   5,   5,   5),
    (  6,   6,   6,   6,   6,   6,   6,   6,   6,   6,   6,   6,   6),
    (  7,   7,   7,   7,   7,   7,   7,   7,   7,   7,   7,   7,   7),
    (  8,   8,   8,   8,   8,   8,   8,   8,   8,   8,   8,   8,   8),
    (  9,   9,   9,   9,   9,   9,   9,   9,   9,   9,   9,   9,   9)
  )

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

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 TableFor13 as its first argument, then in a curried argument list takes the property check function. It invokes apply on the TableFor13, passing in the property check function. Here's an example:

forAll (examples) { (a, b, c, d, e, f, g, h, i, j, k, l, m) =>
  a + b + c + d + e + f + g + h + i + j + k + l + m should equal (a * 13)
}

Because TableFor13 is a Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M)], 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, C, D, E, F, G, H, I, J, K, L, M)], IndexedSeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M)], SeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], GenSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)], GenSeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], Iterable[(A, B, C, D, E, F, G, H, I, J, K, L, M)], IterableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], Equals, GenIterable[(A, B, C, D, E, F, G, H, I, J, K, L, M)], GenIterableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], Traversable[(A, B, C, D, E, F, G, H, I, J, K, L, M)], GenTraversable[(A, B, C, D, E, F, G, H, I, J, K, L, M)], GenericTraversableTemplate[(A, B, C, D, E, F, G, H, I, J, K, L, M), IndexedSeq], TraversableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], GenTraversableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], Parallelizable[(A, B, C, D, E, F, G, H, I, J, K, L, M), ParSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]], TraversableOnce[(A, B, C, D, E, F, G, H, I, J, K, L, M)], GenTraversableOnce[(A, B, C, D, E, F, G, H, I, J, K, L, M)], FilterMonadic[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], HasNewBuilder[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]], PartialFunction[Int, (A, B, C, D, E, F, G, H, I, J, K, L, M)], (Int) ⇒ (A, B, C, D, E, F, G, H, I, J, K, L, M), AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TableFor13
  2. IndexedSeq
  3. IndexedSeqLike
  4. Seq
  5. SeqLike
  6. GenSeq
  7. GenSeqLike
  8. Iterable
  9. IterableLike
  10. Equals
  11. GenIterable
  12. GenIterableLike
  13. Traversable
  14. GenTraversable
  15. GenericTraversableTemplate
  16. TraversableLike
  17. GenTraversableLike
  18. Parallelizable
  19. TraversableOnce
  20. GenTraversableOnce
  21. FilterMonadic
  22. HasNewBuilder
  23. PartialFunction
  24. Function1
  25. AnyRef
  26. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TableFor13(heading: (String, String, String, String, String, String, String, String, String, String, String, String, String), rows: (A, B, C, D, E, F, G, H, I, J, K, L, M)*)

    heading

    a tuple containing string names of the columns in this table

    rows

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

Type Members

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

    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

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

    Definition Classes
    TraversableLike

Value Members

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

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def ++[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](that: Traversable[B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike
  5. def ++:[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike
  6. def +:[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](elem: B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  7. def /:[B](z: B)(op: (B, (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. def :+[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](elem: B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  9. def :\[B](z: B)(op: ((A, B, C, D, E, F, G, H, I, J, K, L, M), B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def addString(b: StringBuilder): StringBuilder

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

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

    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def andThen[C](k: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ C): PartialFunction[Int, C]

    Definition Classes
    PartialFunction → Function1
  16. def apply(fun: (A, B, C, D, E, F, G, H, I, J, K, L, M) ⇒ Unit): Unit

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

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

    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 TableFor13

  17. def apply(idx: Int): (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Selects a row of data by its index.

    Selects a row of data by its index.

    Definition Classes
    TableFor13 → SeqLike → GenSeqLike → Function1
  18. def applyOrElse[A1 <: Int, B1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](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
    IterableLike → Equals
  21. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def collect[B, That](pf: PartialFunction[(A, B, C, D, E, F, G, H, I, J, K, L, M), B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  23. def collectFirst[B](pf: PartialFunction[(A, B, C, D, E, F, G, H, I, J, K, L, M), B]): Option[B]

    Definition Classes
    TraversableOnce
  24. def combinations(n: Int): Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

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

    Definition Classes
    IndexedSeq → Seq → GenSeq → Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  26. def compose[A](g: (A) ⇒ Int): (A) ⇒ (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  27. def contains[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](elem: A1): Boolean

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

    Definition Classes
    SeqLike
  29. def copyToArray[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  30. def copyToArray[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. def copyToArray[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  32. def copyToBuffer[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  33. def corresponds[B](that: GenSeq[B])(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M), B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  34. def count(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  35. def diff[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenSeq[B]): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    SeqLike → GenSeqLike
  36. def distinct: TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    SeqLike → GenSeqLike
  37. def drop(n: Int): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  38. def dropRight(n: Int): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    IterableLike
  39. def dropWhile(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

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

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

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

    Definition Classes
    GenSeqLike → Equals → Any
  43. def exists(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  44. def filter(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    TraversableLike → GenTraversableLike
  45. def filterNot(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  47. def find(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Option[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def flatMap[B, That](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  49. def flatten[B](implicit asTraversable: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ GenTraversableOnce[B]): IndexedSeq[B]

    Definition Classes
    GenericTraversableTemplate
  50. def fold[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldLeft[B](z: B)(op: (B, (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def foldRight[B](z: B)(op: ((A, B, C, D, E, F, G, H, I, J, K, L, M), B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  53. def forall(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def foreach[U](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ U): Unit

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

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

    Definition Classes
    AnyRef → Any
  57. def groupBy[K](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ K): Map[K, TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    TraversableLike → GenTraversableLike
  58. def grouped(size: Int): Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    IterableLike
  59. def hasDefiniteSize: Boolean

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

    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  61. def head: (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  62. def headOption: Option[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    TraversableLike → GenTraversableLike
  63. val heading: (String, String, String, String, String, String, String, String, String, String, String, String, String)

    a tuple containing string names of the columns in this table

  64. def indexOf[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  65. def indexOf[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](elem: B): Int

    Definition Classes
    GenSeqLike
  66. def indexOfSlice[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  67. def indexOfSlice[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  68. def indexWhere(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  69. def indexWhere(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  70. def indices: Range

    Definition Classes
    SeqLike
  71. def init: TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    TraversableLike → GenTraversableLike
  72. def inits: Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    TraversableLike
  73. def intersect[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenSeq[B]): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

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

    Definition Classes
    GenSeqLike
  75. def isEmpty: Boolean

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

    Definition Classes
    Any
  77. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  78. def iterator: Iterator[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  79. def last: (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    TraversableLike → GenTraversableLike
  80. def lastIndexOf[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  81. def lastIndexOf[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](elem: B): Int

    Definition Classes
    GenSeqLike
  82. def lastIndexOfSlice[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  83. def lastIndexOfSlice[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  84. def lastIndexWhere(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean, end: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  85. def lastIndexWhere(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  86. def lastOption: Option[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

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

    Definition Classes
    SeqLike
  89. def lift: (Int) ⇒ Option[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    PartialFunction
  90. def map[B, That](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  91. def max[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](implicit cmp: Ordering[B]): (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def maxBy[B](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B)(implicit cmp: Ordering[B]): (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def min[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](implicit cmp: Ordering[B]): (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def minBy[B](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B)(implicit cmp: Ordering[B]): (A, B, C, D, E, F, G, H, I, J, K, L, M)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def mkString: String

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

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

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

    Definition Classes
    AnyRef
  99. def newBuilder: Builder[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Creates a new Builder for TableFor13s.

    Creates a new Builder for TableFor13s.

    Attributes
    protected[this]
    Definition Classes
    TableFor13 → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  100. def nonEmpty: Boolean

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

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

    Definition Classes
    AnyRef
  103. def orElse[A1 <: Int, B1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Definition Classes
    PartialFunction
  104. def padTo[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](len: Int, elem: B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  105. def par: ParSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    Parallelizable
  106. def parCombiner: Combiner[(A, B, C, D, E, F, G, H, I, J, K, L, M), ParSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]]

    Attributes
    protected[this]
    Definition Classes
    SeqLike → TraversableLike → Parallelizable
  107. def partition(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): (TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M])

    Definition Classes
    TraversableLike → GenTraversableLike
  108. def patch[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  109. def permutations: Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    SeqLike
  110. def prefixLength(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  111. def product[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def reduce[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def reduceLeft[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](op: (B, (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B): B

    Definition Classes
    TraversableOnce
  114. def reduceLeftOption[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](op: (B, (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def reduceOption[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def reduceRight[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](op: ((A, B, C, D, E, F, G, H, I, J, K, L, M), B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  117. def reduceRightOption[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](op: ((A, B, C, D, E, F, G, H, I, J, K, L, M), B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def repr: TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    TraversableLike → GenTraversableLike
  119. def reverse: TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    SeqLike → GenSeqLike
  120. def reverseIterator: Iterator[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    SeqLike
  121. def reverseMap[B, That](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  122. def reversed: List[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  123. def runWith[U](action: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ U): (Int) ⇒ Boolean

    Definition Classes
    PartialFunction
  124. def sameElements[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  125. def scan[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  126. def scanLeft[B, That](z: B)(op: (B, (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  127. def scanRight[B, That](z: B)(op: ((A, B, C, D, E, F, G, H, I, J, K, L, M), B) ⇒ B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], 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.

  128. def segmentLength(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  129. def seq: IndexedSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

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

    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  131. def slice(from: Int, until: Int): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  132. def sliding(size: Int, step: Int): Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    IterableLike
  133. def sliding(size: Int): Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    IterableLike
  134. def sortBy[B](f: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ B)(implicit ord: Ordering[B]): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    SeqLike
  135. def sortWith(lt: ((A, B, C, D, E, F, G, H, I, J, K, L, M), (A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    SeqLike
  136. def sorted[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](implicit ord: Ordering[B]): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    SeqLike
  137. def span(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): (TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M])

    Definition Classes
    TraversableLike → GenTraversableLike
  138. def splitAt(n: Int): (TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M])

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

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

    Definition Classes
    GenSeqLike
  141. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  142. def sum[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  144. def tail: TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    TraversableLike → GenTraversableLike
  145. def tails: Iterator[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    TraversableLike
  146. def take(n: Int): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  147. def takeRight(n: Int): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    IterableLike
  148. def takeWhile(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  149. def thisCollection: IndexedSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  150. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (A, B, C, D, E, F, G, H, I, J, K, L, M), Col[(A, B, C, D, E, F, G, H, I, J, K, L, M)]]): Col[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  151. def toArray[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. def toBuffer[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M)]: Buffer[A1]

    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  153. def toCollection(repr: TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]): IndexedSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  154. def toIndexedSeq: IndexedSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def toIterable: Iterable[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  156. def toIterator: Iterator[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  157. def toList: List[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def toMap[T, U](implicit ev: <:<[(A, B, C, D, E, F, G, H, I, J, K, L, M), (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. def toSeq: Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  160. def toSet[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M)]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def toStream: Stream[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  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
    TableFor13 → SeqLike → TraversableLike → Function1 → AnyRef → Any
  163. def toTraversable: Traversable[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  164. def toVector: Vector[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def transpose[B](implicit asTraversable: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ 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.

  166. def union[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](that: GenSeq[B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  167. def unzip[A1, A2](implicit asPair: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])

    Definition Classes
    GenericTraversableTemplate
  168. def unzip3[A1, A2, A3](implicit asTriple: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])

    Definition Classes
    GenericTraversableTemplate
  169. def updated[B >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](index: Int, elem: B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  170. def view(from: Int, until: Int): SeqView[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  171. def view: SeqView[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  175. def withFilter(p: ((A, B, C, D, E, F, G, H, I, J, K, L, M)) ⇒ Boolean): FilterMonadic[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

    Definition Classes
    TraversableLike → FilterMonadic
  176. def zip[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  177. def zipAll[B, A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  178. def zipWithIndex[A1 >: (A, B, C, D, E, F, G, H, I, J, K, L, M), That](implicit bf: CanBuildFrom[TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike

Inherited from IndexedSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from IndexedSeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from SeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from GenSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from GenSeqLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from Iterable[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from IterableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from Equals

Inherited from GenIterable[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from GenIterableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from Traversable[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from GenTraversable[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from GenericTraversableTemplate[(A, B, C, D, E, F, G, H, I, J, K, L, M), IndexedSeq]

Inherited from TraversableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from GenTraversableLike[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from Parallelizable[(A, B, C, D, E, F, G, H, I, J, K, L, M), ParSeq[(A, B, C, D, E, F, G, H, I, J, K, L, M)]]

Inherited from TraversableOnce[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from GenTraversableOnce[(A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from FilterMonadic[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from HasNewBuilder[(A, B, C, D, E, F, G, H, I, J, K, L, M), TableFor13[A, B, C, D, E, F, G, H, I, J, K, L, M]]

Inherited from PartialFunction[Int, (A, B, C, D, E, F, G, H, I, J, K, L, M)]

Inherited from (Int) ⇒ (A, B, C, D, E, F, G, H, I, J, K, L, M)

Inherited from AnyRef

Inherited from Any

Ungrouped