trait Table[Row] extends Iterable[Row]

A Table of Rows.

Row

the type of each row.

Linear Supertypes
Iterable[Row], IterableFactoryDefaults[Row, Iterable], IterableOps[Row, Iterable, Iterable[Row]], IterableOnceOps[Row, Iterable, Iterable[Row]], IterableOnce[Row], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Table
  2. Iterable
  3. IterableFactoryDefaults
  4. IterableOps
  5. IterableOnceOps
  6. IterableOnce
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val maybeHeader: Option[Header]

    Optional value of the Header of this Table, if there is one.

  2. abstract def rows: Iterable[Row]

    Method to access the individual rows of this table.

    Method to access the individual rows of this table.

    returns

    the rows, in the same sequence in which they were parsed.

  3. abstract def unit[S](rows: Iterable[S], maybeHeader: Option[Header]): Table[S]

    Method to generate a Table[S] for a set of rows.

    Method to generate a Table[S] for a set of rows. Although declared as an instance method, this method produces its result independent of this.

    S

    the underlying type of the rows and the result.

    rows

    a sequence of S.

    maybeHeader

    an optional Header to be used in the resulting Table.

    returns

    a new instance of Table[S].

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++[S >: Row](table: Table[S]): Table[S]

    Method to concatenate two Rows

    Method to concatenate two Rows

    S

    the type of the rows of the result.

    table

    a table to be concatenated with this table.

    returns

    a new table, which is concatenated to this table, by rows.

  4. final def ++[B >: Row](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def coll: Table.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  13. def collect[B](pf: PartialFunction[Row, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  14. def collectFirst[B](pf: PartialFunction[Row, B]): Option[B]
    Definition Classes
    IterableOnceOps
  15. def concat[B >: Row](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  16. def copyToArray[B >: Row](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  17. def copyToArray[B >: Row](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  18. def copyToArray[B >: Row](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  19. def corresponds[B](that: IterableOnce[B])(p: (Row, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  20. def count(p: (Row) => Boolean): Int
    Definition Classes
    IterableOnceOps
  21. def drop(n: Int): Table[Row]

    drop

    drop

    TEST

    n

    the number of rows to drop.

    returns

    a Table like this Table but without its first n rows.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  22. def dropRight(n: Int): Table[Row]

    dropRight

    dropRight

    TEST

    n

    the number of rows to dropRight.

    returns

    a Table like this Table but with dropRight(n) rows.

    Definition Classes
    Table → IterableOps
  23. def dropWhile(p: (Row) => Boolean): Table[Row]

    dropWhile

    dropWhile

    TEST

    p

    the predicate.

    returns

    a Table like this Table but with dropWhile(p) rows.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  24. def empty: Table[Row]

    Method to return an empty Table of type Row.

    Method to return an empty Table of type Row.

    TEST

    returns

    a Table[Row] without any rows.

    Definition Classes
    Table → IterableFactoryDefaults → IterableOps
  25. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  27. def exists(p: (Row) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  28. def filter(p: (Row) => Boolean): Table[Row]

    Method to filter the rows of a table.

    Method to filter the rows of a table.

    TEST

    p

    a predicate to be applied to each row.

    returns

    a Table[Row] consisting only of rows which satisfy the predicate p.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  29. def filterNot(p: (Row) => Boolean): Table[Row]

    Method to filter out the rows of a table.

    Method to filter out the rows of a table.

    TEST

    p

    a predicate to be applied to each row.

    returns

    a Table[Row] consisting only of rows which do not satisfy the predicate p.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  30. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  31. def find(p: (Row) => Boolean): Option[Row]
    Definition Classes
    IterableOnceOps
  32. def flatMap[S](f: (Row) => Iterable[S]): Table[S]

    Transform (flatMap) this Table[Row] into a Table[S].

    Transform (flatMap) this Table[Row] into a Table[S].

    CONSIDER rewriting this method or redefining it as it can be a major source of inefficiency.

    S

    the type of the rows of the result.

    f

    a function which transforms a Row into an IterableOnce[S].

    returns

    a Table[S] which is made up of a concatenation of the results of invoking f on each row this

  33. def flatMap[B](f: (Row) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def flatten[B](implicit asIterable: (Row) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  35. def fold[A1 >: Row](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  36. def foldLeft[B](z: B)(op: (B, Row) => B): B
    Definition Classes
    IterableOnceOps
  37. def foldRight[B](z: B)(op: (Row, B) => B): B
    Definition Classes
    IterableOnceOps
  38. def forall(p: (Row) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  39. def foreach[U](f: (Row) => U): Unit
    Definition Classes
    IterableOnceOps
  40. def fromSpecific(coll: IterableOnce[Row]): Iterable[Row]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  41. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  42. def groupBy[K](f: (Row) => K): Map[K, Iterable[Row]]
    Definition Classes
    IterableOps
  43. def groupMap[K, B](key: (Row) => K)(f: (Row) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  44. def groupMapReduce[K, B](key: (Row) => K)(f: (Row) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  45. def grouped(size: Int): Iterator[Iterable[Row]]
    Definition Classes
    IterableOps
  46. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def head: Row
    Definition Classes
    IterableOps
  48. def headOption: Option[Row]
    Definition Classes
    IterableOps
  49. def init: Iterable[Row]
    Definition Classes
    IterableOps
  50. def inits: Iterator[Iterable[Row]]
    Definition Classes
    IterableOps
  51. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  52. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  53. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  54. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  55. def iterator: Iterator[Row]

    Method to return the rows of this table as an iterator.

    Method to return the rows of this table as an iterator.

    returns

    the rows in the form of Iterator[Row]

    Definition Classes
    Table → IterableOnce
  56. def knownSize: Int
    Definition Classes
    IterableOnce
  57. def last: Row
    Definition Classes
    IterableOps
  58. def lastOption: Option[Row]
    Definition Classes
    IterableOps
  59. def lazyZip[B](that: Iterable[B]): LazyZip2[Row, B, Table.this.type]
    Definition Classes
    Iterable
  60. def map[S](f: (Row) => S): Table[S]

    Transform (map) this Table[Row] into a Table[S].

    Transform (map) this Table[Row] into a Table[S].

    S

    the type of the rows of the result.

    f

    a function which transforms a Row into an S.

    returns

    a Table[S] where each row has value f(x) where x is the value of the corresponding row in this.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  61. def max[B >: Row](implicit ord: Ordering[B]): Row
    Definition Classes
    IterableOnceOps
  62. def maxBy[B](f: (Row) => B)(implicit cmp: Ordering[B]): Row
    Definition Classes
    IterableOnceOps
  63. def maxByOption[B](f: (Row) => B)(implicit cmp: Ordering[B]): Option[Row]
    Definition Classes
    IterableOnceOps
  64. def maxOption[B >: Row](implicit ord: Ordering[B]): Option[Row]
    Definition Classes
    IterableOnceOps
  65. def min[B >: Row](implicit ord: Ordering[B]): Row
    Definition Classes
    IterableOnceOps
  66. def minBy[B](f: (Row) => B)(implicit cmp: Ordering[B]): Row
    Definition Classes
    IterableOnceOps
  67. def minByOption[B](f: (Row) => B)(implicit cmp: Ordering[B]): Option[Row]
    Definition Classes
    IterableOnceOps
  68. def minOption[B >: Row](implicit ord: Ordering[B]): Option[Row]
    Definition Classes
    IterableOnceOps
  69. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  70. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  71. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  72. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  73. def newSpecificBuilder: Builder[Row, Iterable[Row]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  74. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  75. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  76. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  77. def partition(p: (Row) => Boolean): (Iterable[Row], Iterable[Row])
    Definition Classes
    IterableOps
  78. def partitionMap[A1, A2](f: (Row) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  79. def processRows[R, S](f: (Iterable[Row], Iterable[R]) => Iterable[S])(other: Table[R]): Table[S]

    Method to process the rows of this Table and the other Table as a pair of Iterables resulting in an Iterable which will make up the resulting Table.

    Method to process the rows of this Table and the other Table as a pair of Iterables resulting in an Iterable which will make up the resulting Table. NOTE: this is used by zip.

    R

    the underlying type of the other table.

    S

    the underlying type of the result.

    f

    a function which takes an Iterable[Row] and an Iterable[R] and returns an Iterable[S]

    other

    the other table of type Iterable[R].

    returns

    a table[S]

  80. def processRows[S](f: (Iterable[Row]) => Iterable[S]): Table[S]

    Method to process the rows as an Iterable into an Iterable which will make up the resulting Table.

    Method to process the rows as an Iterable into an Iterable which will make up the resulting Table. NOTE: if you need the rows processed individually, use map or flatMap.

    S

    the underlying type of the result.

    f

    a function which takes an Iterable[Row] and returns an Iterable[S]

    returns

    a table[S]

  81. def product[B >: Row](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  82. def reduce[B >: Row](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  83. def reduceLeft[B >: Row](op: (B, Row) => B): B
    Definition Classes
    IterableOnceOps
  84. def reduceLeftOption[B >: Row](op: (B, Row) => B): Option[B]
    Definition Classes
    IterableOnceOps
  85. def reduceOption[B >: Row](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  86. def reduceRight[B >: Row](op: (Row, B) => B): B
    Definition Classes
    IterableOnceOps
  87. def reduceRightOption[B >: Row](op: (Row, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  88. def replaceHeader(ho: Option[Header]): Table[Row]

    Method to clone this Table but with a different Header.

    Method to clone this Table but with a different Header.

    ho

    an optional Header.

    returns

    a Table[Row] with the same rows as this, but with ho as its maybeHeader.

  89. def reversed: Iterable[Row]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  90. def scan[B >: Row](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  91. def scanLeft[B](z: B)(op: (B, Row) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  92. def scanRight[B](z: B)(op: (Row, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  93. def size: Int
    Definition Classes
    IterableOnceOps
  94. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  95. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  96. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  97. def slice(from: Int, until: Int): Table[Row]

    slice

    slice

    TEST

    from

    the index at which to begin the slice.

    until

    the index at which to end the slice

    returns

    a Table like this Table but with slice(from, until) rows.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  98. def sliding(size: Int, step: Int): Iterator[Iterable[Row]]
    Definition Classes
    IterableOps
  99. def sliding(size: Int): Iterator[Iterable[Row]]
    Definition Classes
    IterableOps
  100. def sorted[S >: Row](implicit arg0: Ordering[S]): Table[S]

    Method to transform this Table[Row] into a sorted Table[S] where S is a super-class of Row and for which there is evidence of Ordering[S].

    Method to transform this Table[Row] into a sorted Table[S] where S is a super-class of Row and for which there is evidence of Ordering[S].

    S

    the underlying type of the resulting Table (a super-type of Row and for which there is evidence of Ordering[S]).

    returns

    a Table[S].

  101. def span(p: (Row) => Boolean): (Iterable[Row], Iterable[Row])
    Definition Classes
    IterableOps → IterableOnceOps
  102. def splitAt(n: Int): (Iterable[Row], Iterable[Row])
    Definition Classes
    IterableOps → IterableOnceOps
  103. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Row, S]): S
    Definition Classes
    IterableOnce
  104. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  105. def sum[B >: Row](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  106. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  107. def tail: Iterable[Row]
    Definition Classes
    IterableOps
  108. def tails: Iterator[Iterable[Row]]
    Definition Classes
    IterableOps
  109. def take(n: Int): Table[Row]

    take

    take

    n

    the number of rows to take.

    returns

    a Table like this Table but with only its first n rows.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  110. def takeRight(n: Int): Table[Row]

    takeRight

    takeRight

    TEST

    n

    the number of rows to takeRight.

    returns

    a Table like this Table but with takeRight(n) rows.

    Definition Classes
    Table → IterableOps
  111. def takeWhile(p: (Row) => Boolean): Table[Row]

    takeWhile

    takeWhile

    TEST

    p

    the predicate.

    returns

    a Table like this Table but with takeWhile(p) rows.

    Definition Classes
    Table → IterableOps → IterableOnceOps
  112. def tapEach[U](f: (Row) => U): Iterable[Row]
    Definition Classes
    IterableOps → IterableOnceOps
  113. def to[C1](factory: Factory[Row, C1]): C1
    Definition Classes
    IterableOnceOps
  114. def toArray[Element >: Row](implicit arg0: ClassTag[Element]): Array[Element]

    Method to yield an Array from the rows of this Table.

    Method to yield an Array from the rows of this Table.

    Element

    the element type of the resulting Array.

    returns

    an Array[Element].

    Definition Classes
    Table → IterableOnceOps
  115. final def toBuffer[B >: Row]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  116. def toIndexedSeq: IndexedSeq[Row]
    Definition Classes
    IterableOnceOps
  117. final def toIterable: Table.this.type
    Definition Classes
    Iterable → IterableOps
  118. def toList: List[Row]
    Definition Classes
    IterableOnceOps
  119. def toMap[K, V](implicit ev: <:<[Row, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  120. def toSeq: Seq[Row]

    Method to yield a Seq of the rows of this Table.

    Method to yield a Seq of the rows of this Table.

    returns

    a Seq[Row]

    Definition Classes
    Table → IterableOnceOps
  121. def toSet[B >: Row]: Set[B]
    Definition Classes
    IterableOnceOps
  122. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  123. def toVector: Vector[Row]
    Definition Classes
    IterableOnceOps
  124. def transpose[B](implicit asIterable: (Row) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  125. def unit[S](rows: Iterable[S]): Table[S]

    Method to generate a Table[S] for a set of rows.

    Method to generate a Table[S] for a set of rows. Although declared as an instance method, this method produces its result independent of this.

    S

    the underlying type of the rows and the result.

    rows

    a sequence of S.

    returns

    a new instance of Table[S].

  126. def unzip[A1, A2](implicit asPair: (Row) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  127. def unzip3[A1, A2, A3](implicit asTriple: (Row) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  128. def view: View[Row]
    Definition Classes
    IterableOps
  129. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  130. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  131. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  132. def withFilter(p: (Row) => Boolean): WithFilter[Row, Iterable]
    Definition Classes
    IterableOps
  133. def zip[R](table: Table[R]): Table[(Row, R)]

    Method to zip to Tables together such that the rows of the resulting table are tuples of the rows of the input tables.

    Method to zip to Tables together such that the rows of the resulting table are tuples of the rows of the input tables.

    TEST

    R

    the underlying type of the other Table.

    table

    the other Table.

    returns

    a Table of (Row, R).

  134. def zip[B](that: IterableOnce[B]): Iterable[(Row, B)]
    Definition Classes
    IterableOps
  135. def zipAll[A1 >: Row, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  136. def zipWithIndex: Iterable[(Row, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: Row](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, Row) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (Row, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, Row) => 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.

  5. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: Row](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  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 repr: Iterable[Row]
    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 seq: Table.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

  12. final def toTraversable: Traversable[Row]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  13. def view(from: Int, until: Int): View[Row]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

Inherited from Iterable[Row]

Inherited from IterableFactoryDefaults[Row, Iterable]

Inherited from IterableOps[Row, Iterable, Iterable[Row]]

Inherited from IterableOnceOps[Row, Iterable, Iterable[Row]]

Inherited from IterableOnce[Row]

Inherited from AnyRef

Inherited from Any

Ungrouped