Packages

c

cc.drx

LSFRIterator

class LSFRIterator[A] extends Iterator[A]

See LSFR for linear feedback shift register is a pretty sweet non-repeating random number generator

Source
rand.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LSFRIterator
  2. Iterator
  3. IterableOnceOps
  4. IterableOnce
  5. AnyRef
  6. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by richDrxAny
  3. by richDrxIterator
  4. by richDrxIteratorDouble
  5. by DrxBoundOps
  6. by any2stringadd
  7. by StringFormat
  8. by Ensuring
  9. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LSFRIterator(xs: IndexedSeq[A], i0: Int)

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]]
    Definition Classes
    Iterator

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toany2stringadd[LSFRIterator[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: A](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  5. def ->[B](y: B): (LSFRIterator[A], B)
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toArrowAssoc[LSFRIterator[A]] performed by method ArrowAssoc in scala.Predef.This conversion will take place only if A is a subclass of Double (A <: Double).
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  10. def applyIf(t: Boolean, f: (LSFRIterator[A]) => LSFRIterator[A]): LSFRIterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  11. def applyIf(t: (LSFRIterator[A]) => Boolean)(f: (LSFRIterator[A]) => LSFRIterator[A]): LSFRIterator[A]

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def buffered: BufferedIterator[A]
    Definition Classes
    Iterator
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  15. def collect[B](pf: PartialFunction[A, B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  16. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Definition Classes
    IterableOnceOps
  17. def concat[B >: A](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  18. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  19. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  20. def copyToArray[B >: A](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  21. def copyToArray[B >: A](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  22. def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  23. def count(p: (A) => Boolean): Int
    Definition Classes
    IterableOnceOps
  24. def countBy[B](f: (A) => B): Map[B, Int]

    SI-7365 a more efficient binning without using groupBy (the collection is lost here unless identity is used)

    SI-7365 a more efficient binning without using groupBy (the collection is lost here unless identity is used)

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  25. def countWhile(f: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  26. def deltas: Iterator[Double]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIteratorDouble performed by method richDrxIteratorDouble in cc.drx.predef.Enrich.This conversion will take place only if A is a subclass of Double (A <: Double).
    Definition Classes
    DrxIteratorDouble
  27. def diff(ts: Iterator[Double]): Iterator[Double]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIteratorDouble performed by method richDrxIteratorDouble in cc.drx.predef.Enrich.This conversion will take place only if A is a subclass of Double (A <: Double).
    Definition Classes
    DrxIteratorDouble
  28. def distinct: Iterator[A]
    Definition Classes
    Iterator
  29. def distinctBy[B](f: (A) => B): Iterator[A]
    Definition Classes
    Iterator
  30. def drop(n: Int): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  31. def dropWhile(p: (A) => Boolean): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  32. def duplicate: (Iterator[A], Iterator[A])
    Definition Classes
    Iterator
  33. def elementOf(xs: Set[LSFRIterator[A]]): Boolean
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  34. def ensuring(cond: (LSFRIterator[A]) => Boolean, msg: => Any): LSFRIterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toEnsuring[LSFRIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: (LSFRIterator[A]) => Boolean): LSFRIterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toEnsuring[LSFRIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: Boolean, msg: => Any): LSFRIterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toEnsuring[LSFRIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: Boolean): LSFRIterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toEnsuring[LSFRIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  40. def evens: Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  41. def exists(p: (A) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  42. def filter(p: (A) => Boolean): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  43. def filterNot(p: (A) => Boolean): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  44. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  45. def find(p: (A) => Boolean): Option[A]
    Definition Classes
    IterableOnceOps
  46. def fitString(sizes: Int*): String

    Like mkString but fits(pads) rows to a size

    Like mkString but fits(pads) rows to a size

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  47. def fitString: String

    Like mkString but fits(pads) rows to a size

    Like mkString but fits(pads) rows to a size

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  48. def flatMap[B](f: (A) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  49. def flatten[B](implicit ev: (A) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  50. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  51. def foldLeft[B](z: B)(op: (B, A) => B): B
    Definition Classes
    IterableOnceOps
  52. def foldRight[B](z: B)(op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
  53. def forall(p: (A) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  54. def foreach[U](f: (A) => U): Unit
    Definition Classes
    IterableOnceOps
  55. def foreachBy(dt: Time)(f: (A) => Unit)(implicit sc: drx.ScheduledContext, ec: drx.ExecutionContext): drx.Future[Unit]

    async apply a function to a collection with a spaced time delay

    async apply a function to a collection with a spaced time delay

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  56. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toStringFormat[LSFRIterator[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  57. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  58. def getNonEmpty: Option[Iterator[A]]

    this is useful for making sure things like maxBy won't fail

    this is useful for making sure things like maxBy won't fail

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  59. def groupRuns: Vector[Vector[A]]

    group matches similar runs see also groupRunsBy to group without an intermediate map

    group matches similar runs see also groupRunsBy to group without an intermediate map

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  60. def groupRunsBy[B](f: (A) => B): Vector[Vector[A]]

    group runs that are equivalent after a transformation

    group runs that are equivalent after a transformation

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  61. def groupWhile(f: (A, A) => Boolean): Vector[Vector[A]]

    most generic base function to create group by like run length encodings, see also the simpler groupRuns and groupRunsBy

    most generic base function to create group by like run length encodings, see also the simpler groupRuns and groupRunsBy

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  62. def grouped[B >: A](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  63. def hasNext: Boolean
    Definition Classes
    LSFRIterator → Iterator
  64. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  65. def indexOf[B >: A](elem: B, from: Int): Int
    Definition Classes
    Iterator
  66. def indexOf[B >: A](elem: B): Int
    Definition Classes
    Iterator
  67. def indexWhere(p: (A) => Boolean, from: Int): Int
    Definition Classes
    Iterator
  68. def integrate(f: (A) => Double)(implicit num: Numeric[A]): Double

    trapezoidal integration

    trapezoidal integration

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  69. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding("isEmpty is defined as !hasNext; override hasNext instead", "2.13.0")
  70. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  71. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  72. final def iterator: Iterator[A]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  73. def knownSize: Int
    Definition Classes
    IterableOnce
  74. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  75. val lsfr: LSFR[Int]
  76. def map[B](f: (A) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  77. def mapFrom[B](f: (A) => B): Map[B, A]

    like group by but clobbers unique id's

    like group by but clobbers unique id's

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  78. def mapIf[B](pf: PartialFunction[A, B]): Map[A, B]

    collect like operations

    collect like operations

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  79. def mapLinear[B](f: (A) => drx.Future[B])(implicit ec: drx.ExecutionContext): drx.Future[List[B]]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  80. def mapWith[B](f: (A) => B): Map[A, B]

    like zipWith but clobers uniq elements

    like zipWith but clobers uniq elements

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  81. def max[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  82. def maxBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  83. def maxByOption[B](f: (A) => B)(implicit cmp: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  84. def maxOption[B >: A](implicit ord: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  85. def min[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  86. def minBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  87. def minByOption[B](f: (A) => B)(implicit cmp: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  88. def minOption[B >: A](implicit ord: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  89. def mkCommas: String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  90. def mkLines: String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  91. def mkSpaces: String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  92. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  93. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  94. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  95. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  96. def next(): A
    Definition Classes
    LSFRIterator → Iterator
  97. def nextOption(): Option[A]
    Definition Classes
    Iterator
  98. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  99. def noneIf(f: (LSFRIterator[A]) => Boolean): Option[LSFRIterator[A]]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  100. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  101. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  102. def odds: Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  103. def optionIf(f: (LSFRIterator[A]) => Boolean): Option[LSFRIterator[A]]

    optionally wrap an object

    optionally wrap an object

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  104. def padTo[B >: A](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  105. def partition(p: (A) => Boolean): (Iterator[A], Iterator[A])
    Definition Classes
    Iterator
  106. def patch[B >: A](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  107. def preApply[B](f: (LSFRIterator[A]) => B): B

    a preApply f => f(a)

    a preApply f => f(a)

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  108. def product[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  109. def ratioWhere(p: (A) => Boolean): Ratio
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  110. def reduce[B >: A](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  111. def reduceLeft[B >: A](op: (B, A) => B): B
    Definition Classes
    IterableOnceOps
  112. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Definition Classes
    IterableOnceOps
  113. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  114. def reduceRight[B >: A](op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
  115. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  116. def reversed: Iterable[A]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  117. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  118. def sampleByRatio(reductionRatio: Double)(implicit rand: Rand): Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  119. def scanLeft[B](z: B)(op: (B, A) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  120. def sideEffect(f: (LSFRIterator[A]) => Unit): LSFRIterator[A]

    side effect filter

    side effect filter

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  121. def size: Int
    Definition Classes
    IterableOnceOps
  122. def skip(skipSize: Int, takeSize: Int = 1, offset: Int = 0): Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  123. def slice(from: Int, until: Int): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  124. def sliceIterator(from: Int, until: Int): Iterator[A]
    Attributes
    protected
    Definition Classes
    Iterator
  125. def sliding[B >: A](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  126. def someIf(f: (LSFRIterator[A]) => Boolean): Option[LSFRIterator[A]]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  127. def span(p: (A) => Boolean): (Iterator[A], Iterator[A])
    Definition Classes
    Iterator → IterableOnceOps
  128. def splitAt(n: Int): (Iterator[A], Iterator[A])
    Definition Classes
    IterableOnceOps
  129. def statBy(f: (A) => Vec): StatVec
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  130. def statBy(f: (A) => Double): Stat
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  131. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
    Definition Classes
    IterableOnce
  132. def sum[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  133. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  134. def take(n: Int): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  135. def takeWhile(p: (A) => Boolean): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  136. def tapEach[U](f: (A) => U): Iterator[A]
    Definition Classes
    Iterator → IterableOnceOps
  137. val thisAny: LSFRIterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  138. def till(maxArg: LSFRIterator[A]): Bound[LSFRIterator[A]]

    Bound construction since the Range constructor is deprecated

    Bound construction since the Range constructor is deprecated

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toBoundOps[LSFRIterator[A]] performed by method DrxBoundOps in cc.drx.predef.Enrich.This conversion will take place only if an implicit value of type Boundable[LSFRIterator[A]] is in scope.
    Definition Classes
    BoundOps
  139. def to[C1](factory: Factory[A, C1]): C1
    Definition Classes
    IterableOnceOps
  140. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  141. final def toBuffer[B >: A]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  142. def toIndexedSeq: IndexedSeq[A]
    Definition Classes
    IterableOnceOps
  143. def toList: List[A]
    Definition Classes
    IterableOnceOps
  144. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  145. def toSeq: Seq[A]
    Definition Classes
    IterableOnceOps
  146. def toSet[B >: A]: Set[B]
    Definition Classes
    IterableOnceOps
  147. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  148. def toVector: Vector[A]
    Definition Classes
    IterableOnceOps
  149. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  150. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  151. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  152. def withFilter(p: (A) => Boolean): Iterator[A]
    Definition Classes
    Iterator
  153. def zip[B](that: IterableOnce[B]): Iterator[(A, B)]
    Definition Classes
    Iterator
  154. def zipAll[A1 >: A, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  155. def zipFrom[B](f: (A) => B): Iterator[(B, A)]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  156. def zipIf[B](pf: PartialFunction[A, B]): Iterator[(A, B)]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  157. def zipTo[B, C](ys: Iterator[B])(f: (A, B) => C): Iterator[C]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  158. def zipWith[B](f: (A) => B): Iterator[(A, B)]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  159. def zipWithIndex: Iterator[(A, Int)]
    Definition Classes
    Iterator → IterableOnceOps

Shadowed Implicit Value Members

  1. val xs: Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (lSFRIterator: DrxIterator[A]).xs
    Definition Classes
    DrxIterator
  2. val xs: Iterator[Double]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIteratorDouble performed by method richDrxIteratorDouble in cc.drx.predef.Enrich.This conversion will take place only if A is a subclass of Double (A <: Double).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (lSFRIterator: DrxIteratorDouble).xs
    Definition Classes
    DrxIteratorDouble

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def /@[B](f: Applicable[A, B]): Iterator[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to much magic

  4. def /@[B](f: (A) => B): Iterator[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to much magic

  5. def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

  7. def ?>(f: (LSFRIterator[A]) => Boolean): Option[LSFRIterator[A]]

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to many symbols are hard to undertand

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

  9. def collectFirst[B](f: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  10. def copyToBuffer(dest: Buffer[A]): Unit
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

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

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

  12. def count(f: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  13. def exists(f: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  14. def filter(f: (A) => Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  15. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  16. def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  17. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  18. def foldLeft[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  19. def foldRight[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  20. def forall(f: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  21. def foreach[U](f: (A) => U): Unit
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  22. final def hasDefiniteSize: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) hasDefiniteSize on Iterator is the same as isEmpty

  23. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  24. def map[B](f: (A) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  25. def mapBy[B](f: (A) => B): Map[B, A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version 0.2.13) use mapFrom(f) since it is beter in line wiht the zipFrom command

  26. def max(implicit ord: Ordering[A]): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  27. def maxBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  28. def min(implicit ord: Ordering[A]): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  29. def minBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  30. def mkMap[B](f: (A) => B): Map[A, B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.8) use mapWith(f) or mapBy(f)

  31. def mkString: String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  33. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  34. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  35. def product(implicit num: Numeric[A]): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  36. def reduce(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  37. def reduceLeft(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  38. def reduceLeftOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  39. def reduceOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  40. def reduceRight(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  41. def reduceRightOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  42. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).sameElements(that)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  43. def sample(reductionRatio: Double)(implicit rand: Rand): Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxIterator[A] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version 0.2.13) use sampleByRatio instead for typesafety between Traverable and IndexedSeq samples

  44. def scanRight[B](z: B)(op: (A, B) => B): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Call scanRight on an Iterable instead.

  45. def seq: LSFRIterator.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterator.seq always returns the iterator itself

  46. def size: Int
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  47. def sum(implicit num: Numeric[A]): A
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  48. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  49. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  50. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  51. def toIndexedSeq: IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  52. final def toIterable: Iterable[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  53. def toIterator: Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  55. def toList: List[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  56. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  57. def toSeq: Seq[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  58. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  59. def toStream: Stream[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

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

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

  61. final def toTraversable: Traversable[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  62. def toVector: Vector[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  63. def withFilter(f: (A) => Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lSFRIterator: IterableOnceExtensionMethods[A]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  64. def |>[B](f: (LSFRIterator[A]) => B): B
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toDrxAny[LSFRIterator[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) use preApply if you must (symbols are concise without concision)

  65. def [B](y: B): (LSFRIterator[A], B)
    Implicit
    This member is added by an implicit conversion from LSFRIterator[A] toArrowAssoc[LSFRIterator[A]] performed by method ArrowAssoc in scala.Predef.This conversion will take place only if A is a subclass of Double (A <: Double).
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Iterator[A]

Inherited from IterableOnceOps[A, Iterator, Iterator[A]]

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromLSFRIterator[A] to IterableOnceExtensionMethods[A]

Inherited by implicit conversion richDrxAny fromLSFRIterator[A] to DrxAny[LSFRIterator[A]]

Inherited by implicit conversion richDrxIterator fromLSFRIterator[A] to DrxIterator[A]

Inherited by implicit conversion richDrxIteratorDouble fromLSFRIterator[A] to DrxIteratorDouble

Inherited by implicit conversion DrxBoundOps fromLSFRIterator[A] to BoundOps[LSFRIterator[A]]

Inherited by implicit conversion any2stringadd fromLSFRIterator[A] to any2stringadd[LSFRIterator[A]]

Inherited by implicit conversion StringFormat fromLSFRIterator[A] to StringFormat[LSFRIterator[A]]

Inherited by implicit conversion Ensuring fromLSFRIterator[A] to Ensuring[LSFRIterator[A]]

Inherited by implicit conversion ArrowAssoc fromLSFRIterator[A] to ArrowAssoc[LSFRIterator[A]]

Ungrouped