Trait/Object

ml.combust.mleap.runtime.frame

Row

Related Docs: object Row | package frame

Permalink

trait Row extends Iterable[Any]

Base trait for row data.

Linear Supertypes
Iterable[Any], IterableLike[Any, Iterable[Any]], Equals, GenIterable[Any], GenIterableLike[Any, Iterable[Any]], Traversable[Any], GenTraversable[Any], GenericTraversableTemplate[Any, Iterable], TraversableLike[Any, Iterable[Any]], GenTraversableLike[Any, Iterable[Any]], Parallelizable[Any, ParIterable[Any]], TraversableOnce[Any], GenTraversableOnce[Any], FilterMonadic[Any, Iterable[Any]], HasNewBuilder[Any, Iterable[Any] @scala.annotation.unchecked.uncheckedVariance], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Row
  2. Iterable
  3. IterableLike
  4. Equals
  5. GenIterable
  6. GenIterableLike
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. AnyRef
  18. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Iterable[Any]

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

    Permalink
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def dropIndices(indices: Int*): Row

    Permalink

    Drop value at specified index.

    Drop value at specified index.

    indices

    indices of values to drop

    returns

    new row without specified value

  2. abstract def getRaw(index: Int): Any

    Permalink

    Get value at index.

    Get value at index.

    Does not perform null checks

    index

    index of value

    returns

    value at index

  3. abstract def iterator: Iterator[Any]

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  4. abstract def selectIndices(indices: Int*): Row

    Permalink

    Create a new row from specified indices.

    Create a new row from specified indices.

    indices

    indices to create new row with

    returns

    new row with only selected values

  5. abstract def withValue(value: Any): Row

    Permalink

    Add a value to the row.

    Add a value to the row.

    value

    value to add

    returns

    row with the new value

  6. abstract def withValues(values: Seq[Any]): Row

    Permalink

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[B >: Any, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: Any, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  5. def ++:[B >: Any, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  6. def /:[B](z: B)(op: (B, Any) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  7. def :\[B](z: B)(op: (Any, B) ⇒ B): B

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, Any) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. def apply(index: Int): Any

    Permalink

    Get value at index.

    Get value at index.

    Alias for Row#get

    index

    index of value

    returns

    value at index

  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def collect[B, That](pf: PartialFunction[Any, B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  18. def collectFirst[B](pf: PartialFunction[Any, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  19. def companion: GenericCompanion[Iterable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  20. def copyToArray[B >: Any](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: Any](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: Any](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToBuffer[B >: Any](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  24. def count(p: (Any) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  26. def dropRight(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike
  27. def dropWhile(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  28. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. def equals(obj: Any): Boolean

    Permalink
    Definition Classes
    Row → Equals → AnyRef → Any
  30. def exists(p: (Any) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  31. def filter(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  32. def filterNot(p: (Any) ⇒ Boolean): Iterable[Any]

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  34. def find(p: (Any) ⇒ Boolean): Option[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. def flatMap[B, That](f: (Any) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  36. def flatten[B](implicit asTraversable: (Any) ⇒ GenTraversableOnce[B]): Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  37. def fold[A1 >: Any](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def foldLeft[B](z: B)(op: (B, Any) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def foldRight[B](z: B)(op: (Any, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  40. def forall(p: (Any) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  41. def foreach[U](f: (Any) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  42. def genericBuilder[B]: Builder[B, Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  43. def get(index: Int): Any

    Permalink

    Get value at index.

    Get value at index.

    Performs a null check

    index

    index of value

    returns

    value at index

  44. def getAs[T](index: Int): T

    Permalink

    Get value at index as specified type.

    Get value at index as specified type.

    T

    type of value

    index

    index of value

    returns

    value at index cast to given type

  45. def getBool(index: Int): Boolean

    Permalink

    Get value at index as a boolean.

    Get value at index as a boolean.

    index

    index of value

    returns

    boolean value

  46. def getByte(index: Int): Byte

    Permalink

    Get value at index as a byte.

    Get value at index as a byte.

    index

    index of value

    returns

    byte value

  47. def getByteString(index: Int): ByteString

    Permalink

    Get value at index as a byte string.

    Get value at index as a byte string.

    index

    index of value

    returns

    byte string value

  48. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  49. def getDouble(index: Int): Double

    Permalink

    Get value at index as a double.

    Get value at index as a double.

    index

    index of value

    returns

    double value

  50. def getFloat(index: Int): Float

    Permalink

    Get value at index as a float.

    Get value at index as a float.

    index

    index of value

    returns

    float value

  51. def getInt(index: Int): Int

    Permalink

    Get value at index as an int.

    Get value at index as an int.

    index

    index of value

    returns

    int value

  52. def getList[T](index: Int): List[T]

    Permalink

    Get value at index as an array.

    Get value at index as an array.

    T

    inner type of the array

    index

    index of value

    returns

    seq value

  53. def getLong(index: Int): Long

    Permalink

    Get value at index as a long.

    Get value at index as a long.

    index

    index of value

    returns

    long value

  54. def getSeq[T](index: Int): Seq[T]

    Permalink

    Get value at index as an array.

    Get value at index as an array.

    T

    inner type of the array

    index

    index of value

    returns

    seq value

  55. def getShort(index: Int): Short

    Permalink

    Get value at index as a short.

    Get value at index as a short.

    index

    index of value

    returns

    short value

  56. def getString(index: Int): String

    Permalink

    Get value at index as a string.

    Get value at index as a string.

    index

    index of value

    returns

    string value

  57. def getTensor[T](index: Int): Tensor[T]

    Permalink

    Get value at index as a tensor.

    Get value at index as a tensor.

    index

    index of value

    returns

    tensor value

  58. def groupBy[K](f: (Any) ⇒ K): Map[K, Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def grouped(size: Int): Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike
  60. def hasDefiniteSize: Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  62. def head: Any

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  63. def headOption: Option[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  64. def init: Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  65. def inits: Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike
  66. def isEmpty: Boolean

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

    Permalink
    Definition Classes
    Any
  68. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  69. def last: Any

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def lastOption: Option[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def map[B, That](f: (Any) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  72. def max[B >: Any](implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def maxBy[B](f: (Any) ⇒ B)(implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def min[B >: Any](implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def minBy[B](f: (Any) ⇒ B)(implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString: String

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

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

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

    Permalink
    Definition Classes
    AnyRef
  80. def newBuilder: Builder[Any, Iterable[Any]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  81. def nonEmpty: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  83. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  84. def option(index: Int): Option[Any]

    Permalink

    Get optional value at index.

    Get optional value at index.

    index

    index of value

    returns

    optional value at index

  85. def optionAs[T](index: Int): Option[T]

    Permalink

    Get value at index as specified type.

    Get value at index as specified type.

    T

    type of value

    index

    index of value

    returns

    optional value at index cast to given type

  86. def optionDouble(index: Int): Option[Double]

    Permalink

    Get value at index as a double.

    Get value at index as a double.

    index

    index of value

    returns

    optional double value

  87. def optionInt(index: Int): Option[Int]

    Permalink

    Get value at index as an int.

    Get value at index as an int.

    index

    index of value

    returns

    optional int value

  88. def optionLong(index: Int): Option[Long]

    Permalink

    Get value at index as a long.

    Get value at index as a long.

    index

    index of value

    returns

    optional long value

  89. def optionSeq[T](index: Int): Option[Seq[T]]

    Permalink

    Get value at index as an array.

    Get value at index as an array.

    T

    inner type of the array

    index

    index of value

    returns

    optional seq value

  90. def optionString(index: Int): Option[String]

    Permalink

    Get value at index as a string.

    Get value at index as a string.

    index

    index of value

    returns

    optional string value

  91. def optionTensor[T](index: Int): Option[Tensor[T]]

    Permalink

    Get value at index as a tensor.

    Get value at index as a tensor.

    index

    index of value

    returns

    optional tensor value

  92. def par: ParIterable[Any]

    Permalink
    Definition Classes
    Parallelizable
  93. def parCombiner: Combiner[Any, ParIterable[Any]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  94. def partition(p: (Any) ⇒ Boolean): (Iterable[Any], Iterable[Any])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def product[B >: Any](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def reduce[A1 >: Any](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def reduceLeft[B >: Any](op: (B, Any) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  98. def reduceLeftOption[B >: Any](op: (B, Any) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def reduceOption[A1 >: Any](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def reduceRight[B >: Any](op: (Any, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  101. def reduceRightOption[B >: Any](op: (Any, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def repr: Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  103. def reversed: List[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  104. def sameElements[B >: Any](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  105. def scan[B >: Any, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def scanLeft[B, That](z: B)(op: (B, Any) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def scanRight[B, That](z: B)(op: (Any, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

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

  108. def seq: Iterable[Any]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  109. def shouldFilter(selectors: RowSelector*)(udf: UserDefinedFunction): Boolean

    Permalink
  110. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def slice(from: Int, until: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  112. def sliding(size: Int, step: Int): Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike
  113. def sliding(size: Int): Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike
  114. def span(p: (Any) ⇒ Boolean): (Iterable[Any], Iterable[Any])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  115. def splitAt(n: Int): (Iterable[Any], Iterable[Any])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def sum[B >: Any](implicit num: Numeric[B]): B

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

    Permalink
    Definition Classes
    AnyRef
  119. def tail: Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  120. def tails: Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike
  121. def take(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  122. def takeRight(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike
  123. def takeWhile(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  124. def thisCollection: Iterable[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  125. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Any, Col[Any]]): Col[Any]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  126. def toArray[B >: Any](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toBuffer[B >: Any]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toCollection(repr: Iterable[Any]): Iterable[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  129. def toIndexedSeq: IndexedSeq[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toIterable: Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  131. def toIterator: Iterator[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  132. def toList: List[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toMap[T, U](implicit ev: <:<[Any, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def toSeq: Seq[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def toSet[B >: Any]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def toStream: Stream[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  137. def toString(): String

    Permalink
    Definition Classes
    Row → TraversableLike → AnyRef → Any
  138. def toTraversable: Traversable[Any]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  139. def toVector: Vector[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  140. def transpose[B](implicit asTraversable: (Any) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  141. def udfValue(selectors: RowSelector*)(udf: UserDefinedFunction): Any

    Permalink
  142. def unzip[A1, A2](implicit asPair: (Any) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  143. def unzip3[A1, A2, A3](implicit asTriple: (Any) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  144. def view(from: Int, until: Int): IterableView[Any, Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  145. def view: IterableView[Any, Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  146. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  149. def withFilter(p: (Any) ⇒ Boolean): FilterMonadic[Any, Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  150. def withValue(selectors: RowSelector*)(udf: UserDefinedFunction): Row

    Permalink

    Add value to row with a user defined function.

    Add value to row with a user defined function.

    selectors

    row selectors to generate inputs to function

    udf

    user defined function to call

    returns

    row with calculated value added

  151. def withValues(selectors: RowSelector*)(udf: UserDefinedFunction): Row

    Permalink
  152. def zip[A1 >: Any, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[Any], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  153. def zipAll[B, A1 >: Any, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[Any], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  154. def zipWithIndex[A1 >: Any, That](implicit bf: CanBuildFrom[Iterable[Any], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike

Inherited from Iterable[Any]

Inherited from IterableLike[Any, Iterable[Any]]

Inherited from Equals

Inherited from GenIterable[Any]

Inherited from GenIterableLike[Any, Iterable[Any]]

Inherited from Traversable[Any]

Inherited from GenTraversable[Any]

Inherited from GenericTraversableTemplate[Any, Iterable]

Inherited from TraversableLike[Any, Iterable[Any]]

Inherited from GenTraversableLike[Any, Iterable[Any]]

Inherited from Parallelizable[Any, ParIterable[Any]]

Inherited from TraversableOnce[Any]

Inherited from GenTraversableOnce[Any]

Inherited from FilterMonadic[Any, Iterable[Any]]

Inherited from HasNewBuilder[Any, Iterable[Any] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Ungrouped