Packages

trait ResultSet extends IndexedSeq[RowData]

Represents the collection of rows that is returned from a statement inside a QueryResult. It's basically a collection of Array[Any]. Mutating fields in this array will not affect the database in any way

Linear Supertypes
IndexedSeq[RowData], IndexedSeqOps[RowData, IndexedSeq, IndexedSeq[RowData]], Seq[RowData], Equals, SeqOps[RowData, [_]IndexedSeq[_], IndexedSeq[RowData]], PartialFunction[Int, RowData], (Int) => RowData, Iterable[RowData], IterableFactoryDefaults[RowData, [x]IndexedSeq[x]], IterableOps[RowData, [_]IndexedSeq[_], IndexedSeq[RowData]], IterableOnceOps[RowData, [_]IndexedSeq[_], IndexedSeq[RowData]], IterableOnce[RowData], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResultSet
  2. IndexedSeq
  3. IndexedSeqOps
  4. Seq
  5. Equals
  6. SeqOps
  7. PartialFunction
  8. Function1
  9. Iterable
  10. IterableFactoryDefaults
  11. IterableOps
  12. IterableOnceOps
  13. IterableOnce
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(i: Int): RowData
    Definition Classes
    SeqOps
    Annotations
    @throws(scala.this.throws.<init>$default$1[IndexOutOfBoundsException])
  2. abstract def columnNames: IndexedSeq[String]

    The names of the columns returned by the statement.

  3. abstract def length: Int
    Definition Classes
    SeqOps

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: RowData](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ++:[B >: RowData](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  5. final def +:[B >: RowData](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  6. final def :+[B >: RowData](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. final def :++[B >: RowData](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  12. def andThen[C](k: PartialFunction[RowData, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  13. def andThen[C](k: (RowData) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  14. def appended[B >: RowData](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  15. def appendedAll[B >: RowData](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  16. def applyOrElse[A1 <: Int, B1 >: RowData](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  17. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  18. def canEqual(that: Any): Boolean
    Definition Classes
    Seq → Equals
  19. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  20. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  21. final def coll: ResultSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  22. def collect[B](pf: PartialFunction[RowData, B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  23. def collectFirst[B](pf: PartialFunction[RowData, B]): Option[B]
    Definition Classes
    IterableOnceOps
  24. def combinations(n: Int): Iterator[IndexedSeq[RowData]]
    Definition Classes
    SeqOps
  25. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, RowData]
    Definition Classes
    PartialFunction
  26. def compose[A](g: (A) => Int): (A) => RowData
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  27. final def concat[B >: RowData](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  28. def contains[A1 >: RowData](elem: A1): Boolean
    Definition Classes
    SeqOps
  29. def containsSlice[B](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  30. def copyToArray[B >: RowData](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  31. def copyToArray[B >: RowData](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  32. def copyToArray[B >: RowData](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  33. def corresponds[B](that: Seq[B])(p: (RowData, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  34. def corresponds[B](that: IterableOnce[B])(p: (RowData, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  35. def count(p: (RowData) => Boolean): Int
    Definition Classes
    IterableOnceOps
  36. def diff[B >: RowData](that: Seq[B]): IndexedSeq[RowData]
    Definition Classes
    SeqOps
  37. def distinct: IndexedSeq[RowData]
    Definition Classes
    SeqOps
  38. def distinctBy[B](f: (RowData) => B): IndexedSeq[RowData]
    Definition Classes
    SeqOps
  39. def drop(n: Int): IndexedSeq[RowData]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  40. def dropRight(n: Int): IndexedSeq[RowData]
    Definition Classes
    IndexedSeqOps → IterableOps
  41. def dropWhile(p: (RowData) => Boolean): IndexedSeq[RowData]
    Definition Classes
    IterableOps → IterableOnceOps
  42. def elementWise: ElementWiseExtractor[Int, RowData]
    Definition Classes
    PartialFunction
  43. def empty: IndexedSeq[RowData]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  44. def endsWith[B >: RowData](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  45. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  46. def equals(o: Any): Boolean
    Definition Classes
    Seq → Equals → AnyRef → Any
  47. def exists(p: (RowData) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  48. def filter(pred: (RowData) => Boolean): IndexedSeq[RowData]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def filterNot(pred: (RowData) => Boolean): IndexedSeq[RowData]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  51. def find(p: (RowData) => Boolean): Option[RowData]
    Definition Classes
    IterableOnceOps
  52. def findLast(p: (RowData) => Boolean): Option[RowData]
    Definition Classes
    SeqOps
  53. def flatMap[B](f: (RowData) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  54. def flatten[B](implicit asIterable: (RowData) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  55. def fold[A1 >: RowData](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  56. def foldLeft[B](z: B)(op: (B, RowData) => B): B
    Definition Classes
    IterableOnceOps
  57. def foldRight[B](z: B)(op: (RowData, B) => B): B
    Definition Classes
    IterableOnceOps
  58. def forall(p: (RowData) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  59. def foreach[U](f: (RowData) => U): Unit
    Definition Classes
    IterableOnceOps
  60. def fromSpecific(coll: IterableOnce[RowData]): IndexedSeq[RowData]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  61. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  62. def groupBy[K](f: (RowData) => K): Map[K, IndexedSeq[RowData]]
    Definition Classes
    IterableOps
  63. def groupMap[K, B](key: (RowData) => K)(f: (RowData) => B): Map[K, IndexedSeq[B]]
    Definition Classes
    IterableOps
  64. def groupMapReduce[K, B](key: (RowData) => K)(f: (RowData) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  65. def grouped(size: Int): Iterator[IndexedSeq[RowData]]
    Definition Classes
    IterableOps
  66. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  67. def head: RowData
    Definition Classes
    IterableOps
  68. def headOption: Option[RowData]
    Definition Classes
    IterableOps
  69. def indexOf[B >: RowData](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  70. def indexOf[B >: RowData](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  71. def indexOfSlice[B >: RowData](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  72. def indexOfSlice[B >: RowData](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  73. def indexWhere(p: (RowData) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  74. def indexWhere(p: (RowData) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  75. def indices: Range
    Definition Classes
    SeqOps
  76. def init: IndexedSeq[RowData]
    Definition Classes
    IterableOps
  77. def inits: Iterator[IndexedSeq[RowData]]
    Definition Classes
    IterableOps
  78. def intersect[B >: RowData](that: Seq[B]): IndexedSeq[RowData]
    Definition Classes
    SeqOps
  79. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  80. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  81. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  82. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  83. def iterableFactory: SeqFactory[IndexedSeq]
    Definition Classes
    IndexedSeq → Seq → Iterable → IterableOps
  84. def iterator: Iterator[RowData]
    Definition Classes
    IndexedSeqOps → IterableOnce
  85. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  86. def last: RowData
    Definition Classes
    IndexedSeqOps → IterableOps
  87. def lastIndexOf[B >: RowData](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  88. def lastIndexOfSlice[B >: RowData](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  89. def lastIndexOfSlice[B >: RowData](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  90. def lastIndexWhere(p: (RowData) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  91. def lastIndexWhere(p: (RowData) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  92. def lastOption: Option[RowData]
    Definition Classes
    IterableOps
  93. def lazyZip[B](that: Iterable[B]): LazyZip2[RowData, B, ResultSet.this.type]
    Definition Classes
    Iterable
  94. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  95. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  96. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  97. def lift: (Int) => Option[RowData]
    Definition Classes
    PartialFunction
  98. def map[B](f: (RowData) => B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  99. def max[B >: RowData](implicit ord: Ordering[B]): RowData
    Definition Classes
    IterableOnceOps
  100. def maxBy[B](f: (RowData) => B)(implicit cmp: Ordering[B]): RowData
    Definition Classes
    IterableOnceOps
  101. def maxByOption[B](f: (RowData) => B)(implicit cmp: Ordering[B]): Option[RowData]
    Definition Classes
    IterableOnceOps
  102. def maxOption[B >: RowData](implicit ord: Ordering[B]): Option[RowData]
    Definition Classes
    IterableOnceOps
  103. def min[B >: RowData](implicit ord: Ordering[B]): RowData
    Definition Classes
    IterableOnceOps
  104. def minBy[B](f: (RowData) => B)(implicit cmp: Ordering[B]): RowData
    Definition Classes
    IterableOnceOps
  105. def minByOption[B](f: (RowData) => B)(implicit cmp: Ordering[B]): Option[RowData]
    Definition Classes
    IterableOnceOps
  106. def minOption[B >: RowData](implicit ord: Ordering[B]): Option[RowData]
    Definition Classes
    IterableOnceOps
  107. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  108. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  109. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  110. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  111. def newSpecificBuilder: Builder[RowData, IndexedSeq[RowData]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  112. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  113. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  114. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  115. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[scala.collection]
    Definition Classes
    SeqOps
  116. def orElse[A1 <: Int, B1 >: RowData](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  117. def padTo[B >: RowData](len: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  118. def partition(p: (RowData) => Boolean): (IndexedSeq[RowData], IndexedSeq[RowData])
    Definition Classes
    IterableOps
  119. def partitionMap[A1, A2](f: (RowData) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  120. def patch[B >: RowData](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
    Definition Classes
    SeqOps
  121. def permutations: Iterator[IndexedSeq[RowData]]
    Definition Classes
    SeqOps
  122. def prepended[B >: RowData](elem: B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → SeqOps
  123. def prependedAll[B >: RowData](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  124. def product[B >: RowData](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  125. def reduce[B >: RowData](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  126. def reduceLeft[B >: RowData](op: (B, RowData) => B): B
    Definition Classes
    IterableOnceOps
  127. def reduceLeftOption[B >: RowData](op: (B, RowData) => B): Option[B]
    Definition Classes
    IterableOnceOps
  128. def reduceOption[B >: RowData](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  129. def reduceRight[B >: RowData](op: (RowData, B) => B): B
    Definition Classes
    IterableOnceOps
  130. def reduceRightOption[B >: RowData](op: (RowData, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  131. def reverse: IndexedSeq[RowData]
    Definition Classes
    IndexedSeqOps → SeqOps
  132. def reverseIterator: Iterator[RowData]
    Definition Classes
    IndexedSeqOps → SeqOps
  133. def reversed: Iterable[RowData]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  134. def runWith[U](action: (RowData) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  135. def sameElements[B >: RowData](that: IterableOnce[B]): Boolean
    Definition Classes
    SeqOps
  136. def scan[B >: RowData](z: B)(op: (B, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  137. def scanLeft[B](z: B)(op: (B, RowData) => B): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  138. def scanRight[B](z: B)(op: (RowData, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  139. def search[B >: RowData](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  140. def search[B >: RowData](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  141. def segmentLength(p: (RowData) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  142. final def segmentLength(p: (RowData) => Boolean): Int
    Definition Classes
    SeqOps
  143. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  144. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  145. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  146. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  147. def slice(from: Int, until: Int): IndexedSeq[RowData]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  148. def sliding(size: Int, step: Int): Iterator[IndexedSeq[RowData]]
    Definition Classes
    IterableOps
  149. def sliding(size: Int): Iterator[IndexedSeq[RowData]]
    Definition Classes
    IterableOps
  150. def sortBy[B](f: (RowData) => B)(implicit ord: Ordering[B]): IndexedSeq[RowData]
    Definition Classes
    SeqOps
  151. def sortWith(lt: (RowData, RowData) => Boolean): IndexedSeq[RowData]
    Definition Classes
    SeqOps
  152. def sorted[B >: RowData](implicit ord: Ordering[B]): IndexedSeq[RowData]
    Definition Classes
    SeqOps
  153. def span(p: (RowData) => Boolean): (IndexedSeq[RowData], IndexedSeq[RowData])
    Definition Classes
    IterableOps → IterableOnceOps
  154. def splitAt(n: Int): (IndexedSeq[RowData], IndexedSeq[RowData])
    Definition Classes
    IterableOps → IterableOnceOps
  155. def startsWith[B >: RowData](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  156. def stepper[S <: Stepper[_]](implicit shape: StepperShape[RowData, S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  157. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    IndexedSeq → Seq → Iterable
    Annotations
    @deprecatedOverriding("Compatibility override", "2.13.0")
  158. def sum[B >: RowData](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  159. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  160. def tail: IndexedSeq[RowData]
    Definition Classes
    IterableOps
  161. def tails: Iterator[IndexedSeq[RowData]]
    Definition Classes
    IterableOps
  162. def take(n: Int): IndexedSeq[RowData]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  163. def takeRight(n: Int): IndexedSeq[RowData]
    Definition Classes
    IndexedSeqOps → IterableOps
  164. def takeWhile(p: (RowData) => Boolean): IndexedSeq[RowData]
    Definition Classes
    IterableOps → IterableOnceOps
  165. def tapEach[U](f: (RowData) => U): IndexedSeq[RowData]
    Definition Classes
    IterableOps → IterableOnceOps
  166. def to[C1](factory: Factory[RowData, C1]): C1
    Definition Classes
    IterableOnceOps
  167. def toArray[B >: RowData](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  168. final def toBuffer[B >: RowData]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  169. def toIndexedSeq: IndexedSeq[RowData]
    Definition Classes
    IterableOnceOps
  170. final def toIterable: ResultSet.this.type
    Definition Classes
    Iterable → IterableOps
  171. def toList: List[RowData]
    Definition Classes
    IterableOnceOps
  172. def toMap[K, V](implicit ev: <:<[RowData, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  173. def toSeq: Seq[RowData]
    Definition Classes
    IterableOnceOps
  174. def toSet[B >: RowData]: Set[B]
    Definition Classes
    IterableOnceOps
  175. def toString(): String
    Definition Classes
    Seq → Function1 → Iterable → AnyRef → Any
  176. def toVector: Vector[RowData]
    Definition Classes
    IterableOnceOps
  177. def transpose[B](implicit asIterable: (RowData) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    IterableOps
  178. def unapply(a: Int): Option[RowData]
    Definition Classes
    PartialFunction
  179. def unzip[A1, A2](implicit asPair: (RowData) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  180. def unzip3[A1, A2, A3](implicit asTriple: (RowData) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    IterableOps
  181. def updated[B >: RowData](index: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  182. def view: IndexedSeqView[RowData]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  183. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  184. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  185. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  186. def withFilter(p: (RowData) => Boolean): WithFilter[RowData, [_]IndexedSeq[_]]
    Definition Classes
    IterableOps
  187. def zip[B](that: IterableOnce[B]): IndexedSeq[(RowData, B)]
    Definition Classes
    IterableOps
  188. def zipAll[A1 >: RowData, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
    Definition Classes
    IterableOps
  189. def zipWithIndex: IndexedSeq[(RowData, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

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

    (Since version 2.13.0) Use segmentLength instead of prefixLength

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

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

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

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

  13. final def toTraversable: Traversable[RowData]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

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

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

Inherited from IndexedSeq[RowData]

Inherited from IndexedSeqOps[RowData, IndexedSeq, IndexedSeq[RowData]]

Inherited from Seq[RowData]

Inherited from Equals

Inherited from SeqOps[RowData, [_]IndexedSeq[_], IndexedSeq[RowData]]

Inherited from PartialFunction[Int, RowData]

Inherited from (Int) => RowData

Inherited from Iterable[RowData]

Inherited from IterableFactoryDefaults[RowData, [x]IndexedSeq[x]]

Inherited from IterableOps[RowData, [_]IndexedSeq[_], IndexedSeq[RowData]]

Inherited from IterableOnceOps[RowData, [_]IndexedSeq[_], IndexedSeq[RowData]]

Inherited from IterableOnce[RowData]

Inherited from AnyRef

Inherited from Any

Ungrouped