edu.stanford.nlp.tmt.model.lda

LDADataset

trait LDADataset [Item] extends LazyIterable[LDADocumentParams] with Dataset[Item, String, LDADataset[Item]] with TermDataset[Item]

An LDA dataset is a collection of items; each item has an ID (retrieved with the getID function) and a sequence of terms (retrieved with the getTerms function). See static constructors in companion object.

go to: companion
linear super types: TermDataset[Item], Dataset[Item, String, LDADataset[Item]], LazyIterable[LDADocumentParams], LazyIterableLike[LDADocumentParams, LazyIterable[LDADocumentParams]], Iterable[LDADocumentParams], IterableLike[LDADocumentParams, LazyIterable[LDADocumentParams]], Equals, Traversable[LDADocumentParams], GenericTraversableTemplate[LDADocumentParams, Iterable], TraversableLike[LDADocumentParams, LazyIterable[LDADocumentParams]], TraversableOnce[LDADocumentParams], FilterMonadic[LDADocumentParams, LazyIterable[LDADocumentParams]], HasNewBuilder[LDADocumentParams, LazyIterable[LDADocumentParams]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. LDADataset
  2. TermDataset
  3. Dataset
  4. LazyIterable
  5. LazyIterableLike
  6. Iterable
  7. IterableLike
  8. Equals
  9. Traversable
  10. GenericTraversableTemplate
  11. TraversableLike
  12. TraversableOnce
  13. FilterMonadic
  14. HasNewBuilder
  15. AnyRef
  16. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Type Members

  1. type Self = LazyIterable[LDADocumentParams]

    attributes: protected
    definition classes: TraversableLike

Value Members

  1. def != (arg0: AnyRef) : Boolean

    attributes: final
    definition classes: AnyRef
  2. def != (arg0: Any) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. def ++ [B >: A, That] (xs: TraversableOnce[B])(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], B, That]) : That

    definition classes: LazyIterableLike → TraversableLike
  7. def /: [B] (z: B)(op: (B, LDADocumentParams) ⇒ B) : B

    definition classes: TraversableOnce
  8. def :\ [B] (z: B)(op: (LDADocumentParams, B) ⇒ B) : B

    definition classes: TraversableOnce
  9. def == (arg0: AnyRef) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  10. def == (arg0: Any) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: 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 asIDs : Iterable[String]

    A view of this dataset as its underlying terms.

    A view of this dataset as its underlying terms.

    definition classes: Dataset
  15. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  16. def asTerms (termIndex: Index[String] = ...) : Iterable[Array[Int]]

    A view of this dataset as its underlying terms.

    A view of this dataset as its underlying terms.

    definition classes: TermDataset
  17. def canEqual (that: Any) : Boolean

    definition classes: IterableLike → Equals
  18. def clone () : AnyRef

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    attributes: protected
    definition classes: AnyRef
  19. def collect [B, That] (pf: PartialFunction[LDADocumentParams, B])(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], B, That]) : That

    definition classes: LazyIterableLike → TraversableLike
  20. def companion : GenericCompanion[LazyIterable]

    definition classes: LazyIterable → Iterable → Traversable → GenericTraversableTemplate
  21. def copyToArray [B >: A] (xs: Array[B], start: Int, len: Int) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  22. def copyToArray [B >: A] (xs: Array[B]) : Unit

    definition classes: TraversableOnce
  23. def copyToArray [B >: A] (xs: Array[B], start: Int) : Unit

    definition classes: TraversableOnce
  24. def copyToBuffer [B >: A] (dest: Buffer[B]) : Unit

    definition classes: TraversableOnce
  25. def count (p: (LDADocumentParams) ⇒ Boolean) : Int

    definition classes: TraversableOnce
  26. def drop (n: Int) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → TraversableLike
  27. def dropRight (n: Int) : LazyIterable[LDADocumentParams]

    definition classes: IterableLike
  28. def dropWhile (p: (LDADocumentParams) ⇒ Boolean) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → TraversableLike
  29. def elements : Iterator[LDADocumentParams]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  30. def eq (arg0: AnyRef) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  31. def equals (arg0: Any) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: AnyRef → Any
  32. def exists (p: (LDADocumentParams) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  33. def filter (p: (LDADocumentParams) ⇒ Boolean) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → TraversableLike
  34. def filterNot (p: (LDADocumentParams) ⇒ Boolean) : LazyIterable[LDADocumentParams]

    definition classes: TraversableLike
  35. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected
    definition classes: AnyRef
  36. def find (p: (LDADocumentParams) ⇒ Boolean) : Option[LDADocumentParams]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  37. def first : LDADocumentParams

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  38. def firstOption : Option[LDADocumentParams]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  39. def flatMap [B, That] (f: (LDADocumentParams) ⇒ Traversable[B])(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], B, That]) : That

    definition classes: LazyIterableLike → TraversableLike → FilterMonadic
  40. def flatten [B] (implicit asTraversable: (LDADocumentParams) ⇒ Traversable[B]) : Iterable[B]

    definition classes: GenericTraversableTemplate
  41. def foldLeft [B] (z: B)(op: (B, LDADocumentParams) ⇒ B) : B

    definition classes: TraversableOnce
  42. def foldRight [B] (z: B)(op: (LDADocumentParams, B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  43. def forall (p: (LDADocumentParams) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  44. def force [B >: A, That] (implicit bf: CanBuildFrom[Iterable[LDADocumentParams], B, That]) : That

    definition classes: LazyIterableLike
  45. def foreach [U] (f: (LDADocumentParams) ⇒ U) : Unit

    definition classes: LazyIterableLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → FilterMonadic
  46. def genericBuilder [B] : Builder[B, Iterable[B]]

    definition classes: GenericTraversableTemplate
  47. def getClass () : java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  48. def getID (item: Item) : String

    Returns a unique identifier for each item.

    Returns a unique identifier for each item.

    attributes: abstract
    definition classes: Dataset
  49. def getTerms (item: Item) : Iterable[String]

    The tokenizer used to tokenize this dataset.

    The tokenizer used to tokenize this dataset.

    attributes: abstract
    definition classes: TermDataset
  50. def groupBy [K] (f: (LDADocumentParams) ⇒ K) : Map[K, LazyIterable[LDADocumentParams]]

    definition classes: TraversableLike
  51. def grouped (size: Int) : Iterator[LazyIterable[LDADocumentParams]]

    definition classes: LazyIterableLike → IterableLike
  52. def hasDefiniteSize : Boolean

    definition classes: TraversableLike → TraversableOnce
  53. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: AnyRef → Any
  54. def head : LDADocumentParams

    definition classes: IterableLike → TraversableLike
  55. def headOption : Option[LDADocumentParams]

    definition classes: TraversableLike
  56. def init : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → TraversableLike
  57. def isEmpty : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  58. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  59. def isTraversableAgain : Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  60. def items : Iterable[Item]

    Collection of items.

    Collection of items.

    attributes: abstract
    definition classes: Dataset
  61. def iterator : Iterator[LDADocumentParams]

    definition classes: LDADataset → LazyIterableLike → IterableLike
  62. def last : LDADocumentParams

    definition classes: TraversableLike
  63. def lastOption : Option[LDADocumentParams]

    definition classes: TraversableLike
  64. def map [B, That] (f: (LDADocumentParams) ⇒ B)(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], B, That]) : That

    definition classes: LazyIterableLike → TraversableLike → FilterMonadic
  65. def max [B >: A] (implicit cmp: Ordering[B]) : LDADocumentParams

    definition classes: TraversableOnce
  66. def min [B >: A] (implicit cmp: Ordering[B]) : LDADocumentParams

    definition classes: TraversableOnce
  67. def mkString : String

    definition classes: TraversableOnce
  68. def mkString (sep: String) : String

    definition classes: TraversableOnce
  69. def mkString (start: String, sep: String, end: String) : String

    definition classes: TraversableOnce
  70. def name : String

    Name of this dataset.

    Name of this dataset.

    attributes: abstract
    definition classes: Dataset
  71. def ne (arg0: AnyRef) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  72. def newAppended [B >: A] (that: Traversable[B]) : Transformed[B]

    attributes: protected
    definition classes: LazyIterableLike
  73. def newBuilder : Builder[LDADocumentParams, LazyIterable[LDADocumentParams]]

    attributes: protected[this]
    definition classes: LazyIterableLike → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  74. def newDroppedWhile (p: (LDADocumentParams) ⇒ Boolean) : Transformed[LDADocumentParams]

    attributes: protected
    definition classes: LazyIterableLike
  75. def newFiltered (p: (LDADocumentParams) ⇒ Boolean) : Transformed[LDADocumentParams]

    attributes: protected
    definition classes: LazyIterableLike
  76. def newFlatMapped [B] (f: (LDADocumentParams) ⇒ Traversable[B]) : Transformed[B]

    attributes: protected
    definition classes: LazyIterableLike
  77. def newForced [B] (xs: ⇒ Seq[B]) : Transformed[B]

    attributes: protected
    definition classes: LazyIterableLike
  78. def newMapped [B] (f: (LDADocumentParams) ⇒ B) : Transformed[B]

    attributes: protected
    definition classes: LazyIterableLike
  79. def newSliced (_from: Int, _until: Int) : Transformed[LDADocumentParams]

    attributes: protected
    definition classes: LazyIterableLike
  80. def newTakenWhile (p: (LDADocumentParams) ⇒ Boolean) : Transformed[LDADocumentParams]

    attributes: protected
    definition classes: LazyIterableLike
  81. def newZipped [B] (that: Iterable[B]) : Transformed[(LDADocumentParams, B)]

    attributes: protected
    definition classes: LazyIterableLike
  82. def newZippedAll [A1 >: A, B] (that: Iterable[B], _thisElem: A1, _thatElem: B) : Transformed[(A1, B)]

    attributes: protected
    definition classes: LazyIterableLike
  83. def nonEmpty : Boolean

    definition classes: TraversableOnce
  84. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  85. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  86. def partition (p: (LDADocumentParams) ⇒ Boolean) : (LazyIterable[LDADocumentParams], LazyIterable[LDADocumentParams])

    definition classes: LazyIterableLike → TraversableLike
  87. def product [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  88. def projection : IterableView[LDADocumentParams, LazyIterable[LDADocumentParams]]

    definition classes: IterableLike
      deprecated:
    1. use view' instead

  89. def reduceLeft [B >: A] (op: (B, LDADocumentParams) ⇒ B) : B

    definition classes: TraversableOnce
  90. def reduceLeftOption [B >: A] (op: (B, LDADocumentParams) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  91. def reduceRight [B >: A] (op: (LDADocumentParams, B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  92. def reduceRightOption [B >: A] (op: (LDADocumentParams, B) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  93. def repr : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → TraversableLike
  94. def reversed : List[LDADocumentParams]

    attributes: protected[this]
    definition classes: TraversableOnce
  95. def sameElements [B >: A] (that: Iterable[B]) : Boolean

    definition classes: IterableLike
  96. def scanLeft [B, That] (z: B)(op: (B, LDADocumentParams) ⇒ B)(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], B, That]) : That

    definition classes: TraversableLike
  97. def scanRight [B, That] (z: B)(op: (LDADocumentParams, B) ⇒ B)(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], B, That]) : That

    definition classes: TraversableLike
  98. def signature : String

    Signature is the signature of the name.

    Signature is the signature of the name.

    definition classes: Dataset
  99. def size : Int

    definition classes: LDADatasetDataset → LazyIterableLike → TraversableOnce
  100. lazy val sizeCache : Int

    definition classes: LazyIterableLike
  101. def slice (from: Int, until: Int) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → IterableLike → TraversableLike
  102. def sliding [B >: A] (size: Int, step: Int) : Iterator[LazyIterable[LDADocumentParams]]

    definition classes: LazyIterableLike → IterableLike
  103. def sliding [B >: A] (size: Int) : Iterator[LazyIterable[LDADocumentParams]]

    definition classes: IterableLike
  104. def span (p: (LDADocumentParams) ⇒ Boolean) : (LazyIterable[LDADocumentParams], LazyIterable[LDADocumentParams])

    definition classes: LazyIterableLike → TraversableLike
  105. def splitAt (n: Int) : (LazyIterable[LDADocumentParams], LazyIterable[LDADocumentParams])

    definition classes: LazyIterableLike → TraversableLike
  106. def stringPrefix : String

    definition classes: LazyIterableLike → TraversableLike
  107. def sum [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  108. def synchronized [T0] (arg0: T0) : T0

    attributes: final
    definition classes: AnyRef
  109. def tail : LazyIterable[LDADocumentParams]

    definition classes: TraversableLike
  110. def take (n: Int) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → IterableLike → TraversableLike
  111. def takeRight (n: Int) : LazyIterable[LDADocumentParams]

    definition classes: IterableLike
  112. def takeWhile (p: (LDADocumentParams) ⇒ Boolean) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → IterableLike → TraversableLike
  113. val termIndex : Option[Index[String]]

    The index of terms in this dataset.

    The index of terms in this dataset.

    definition classes: TermDataset
  114. def thisCollection : Iterable[LDADocumentParams]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  115. def toArray [B >: A] (implicit arg0: ClassManifest[B]) : Array[B]

    definition classes: TraversableOnce
  116. def toBuffer [B >: A] : Buffer[B]

    definition classes: TraversableOnce
  117. def toCollection (repr: LazyIterable[LDADocumentParams]) : Iterable[LDADocumentParams]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  118. def toIndexedSeq [B >: A] : IndexedSeq[B]

    definition classes: TraversableOnce
  119. def toIterable : Iterable[LDADocumentParams]

    definition classes: LazyIterableLike → IterableLike → TraversableOnce
  120. def toIterator : Iterator[LDADocumentParams]

    definition classes: TraversableLike → TraversableOnce
  121. def toList : List[LDADocumentParams]

    definition classes: TraversableOnce
  122. def toMap [T, U] (implicit ev: <:<[LDADocumentParams, (T, U)]) : Map[T, U]

    definition classes: TraversableOnce
  123. def toSeq : Seq[LDADocumentParams]

    definition classes: IterableLike → TraversableOnce
  124. def toSet [B >: A] : Set[B]

    definition classes: TraversableOnce
  125. def toStream : Stream[LDADocumentParams]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  126. def toString () : String

    Returns this.

    Returns this.name.@return a string representation of the object. */

    definition classes: Dataset → AnyRef → Any
  127. def toTraversable : Traversable[LDADocumentParams]

    definition classes: TraversableLike → TraversableOnce
  128. val tokenizer : Option[Tokenizer]

    The base tokenizer used when generating this dataset.

    The base tokenizer used when generating this dataset.

    definition classes: TermDataset
  129. def transpose [B] (implicit asTraversable: (LDADocumentParams) ⇒ Traversable[B]) : Iterable[Iterable[B]]

    definition classes: GenericTraversableTemplate
  130. def unzip [A1, A2] (implicit asPair: (LDADocumentParams) ⇒ (A1, A2)) : (Iterable[A1], Iterable[A2])

    definition classes: GenericTraversableTemplate
  131. def view (from: Int, until: Int) : IterableView[LDADocumentParams, LazyIterable[LDADocumentParams]]

    definition classes: IterableLike → TraversableLike
  132. def view : IterableView[LDADocumentParams, LazyIterable[LDADocumentParams]]

    definition classes: IterableLike → TraversableLike
  133. def wait () : Unit

    attributes: final
    definition classes: AnyRef
  134. def wait (arg0: Long, arg1: Int) : Unit

    attributes: final
    definition classes: AnyRef
  135. def wait (arg0: Long) : Unit

    attributes: final
    definition classes: AnyRef
  136. def withFilter (p: (LDADocumentParams) ⇒ Boolean) : LazyIterable[LDADocumentParams]

    definition classes: LazyIterableLike → TraversableLike → FilterMonadic
  137. def zip [A1 >: A, B, That] (that: Iterable[B])(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], (A1, B), That]) : That

    definition classes: LazyIterableLike → IterableLike
  138. def zipAll [B, A1 >: A, That] (that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], (A1, B), That]) : That

    definition classes: LazyIterableLike → IterableLike
  139. def zipWithIndex [A1 >: A, That] (implicit bf: CanBuildFrom[LazyIterable[LDADocumentParams], (A1, Int), That]) : That

    definition classes: LazyIterableLike → IterableLike

Inherited from TermDataset[Item]

Inherited from Dataset[Item, String, LDADataset[Item]]

Inherited from LazyIterable[LDADocumentParams]

Inherited from LazyIterableLike[LDADocumentParams, LazyIterable[LDADocumentParams]]

Inherited from Iterable[LDADocumentParams]

Inherited from IterableLike[LDADocumentParams, LazyIterable[LDADocumentParams]]

Inherited from Equals

Inherited from Traversable[LDADocumentParams]

Inherited from GenericTraversableTemplate[LDADocumentParams, Iterable]

Inherited from TraversableLike[LDADocumentParams, LazyIterable[LDADocumentParams]]

Inherited from TraversableOnce[LDADocumentParams]

Inherited from FilterMonadic[LDADocumentParams, LazyIterable[LDADocumentParams]]

Inherited from HasNewBuilder[LDADocumentParams, LazyIterable[LDADocumentParams]]

Inherited from AnyRef

Inherited from Any