Packages

class Mapped[S] extends IterableSplitter[S]

Linear Supertypes
IterableSplitter[S], DelegatedSignalling, Signalling, Splitter[S], AugmentedIterableIterator[S], RemainsIterator[S], Iterator[S], IterableOnceOps[S, Iterator, Iterator[S]], IterableOnce[S], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mapped
  2. IterableSplitter
  3. DelegatedSignalling
  4. Signalling
  5. Splitter
  6. AugmentedIterableIterator
  7. RemainsIterator
  8. Iterator
  9. IterableOnceOps
  10. IterableOnce
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Mapped(f: (T) => S)

Type Members

  1. class Appended[U >: T, PI <: IterableSplitter[U]] extends IterableSplitter[U]
    Definition Classes
    IterableSplitter
  2. class Mapped[S] extends IterableSplitter[S]
    Definition Classes
    IterableSplitter
  3. class GroupedIterator[B >: A] extends AbstractIterator[immutable.Seq[B]]
    Definition Classes
    Iterator
  4. class Taken extends IterableSplitter[T]
    Definition Classes
    IterableSplitter
  5. class Zipped[S] extends IterableSplitter[(T, S)]
    Definition Classes
    IterableSplitter
  6. class ZippedAll[U >: T, S] extends IterableSplitter[(U, S)]
    Definition Classes
    IterableSplitter

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: S](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def abort(): Unit

    Sends an abort signal to other workers.

    Sends an abort signal to other workers.

    Abort flag being true means that a worker can abort and produce whatever result, since its result will not affect the final result of computation. An example of operations using this are find, forall and exists methods.

    Definition Classes
    DelegatedSignallingSignalling
  6. final def addString(b: mutable.StringBuilder): mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. final def addString(b: mutable.StringBuilder, sep: String): mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  9. def appendParIterable[U >: S, PI <: IterableSplitter[U]](that: PI): Appended[U, PI]
    Definition Classes
    IterableSplitter
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def buffered: BufferedIterator[S]
    Definition Classes
    Iterator
  12. def buildString(closure: ((String) => Unit) => Unit): String
    Attributes
    protected
    Definition Classes
    IterableSplitter
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. def collect[B](pf: PartialFunction[S, B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  15. def collect2combiner[S, That](pf: PartialFunction[S, S], cb: Combiner[S, That]): Combiner[S, That]
    Definition Classes
    AugmentedIterableIterator
  16. def collectFirst[B](pf: PartialFunction[S, B]): Option[B]
    Definition Classes
    IterableOnceOps
  17. def concat[B >: S](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  18. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  19. def copy2builder[U >: S, Coll, Bld <: Builder[U, Coll]](b: Bld): Bld
    Definition Classes
    AugmentedIterableIterator
  20. def copyToArray[B >: S](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  21. def copyToArray[B >: S](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  22. def copyToArray[B >: S](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  23. def corresponds[B](that: IterableOnce[B])(p: (S, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  24. def count(p: (S) => Boolean): Int
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  25. def distinct: Iterator[S]
    Definition Classes
    Iterator
  26. def distinctBy[B](f: (S) => B): Iterator[S]
    Definition Classes
    Iterator
  27. def drop(n: Int): IterableSplitter[S]

    Drop implemented as simple eager consumption.

    Drop implemented as simple eager consumption.

    Definition Classes
    IterableSplitter → Iterator → IterableOnceOps
  28. def drop2combiner[U >: S, This](n: Int, cb: Combiner[U, This]): Combiner[U, This]
    Definition Classes
    AugmentedIterableIterator
  29. def dropWhile(p: (S) => Boolean): Iterator[S]
    Definition Classes
    Iterator → IterableOnceOps
  30. def dup: IterableSplitter[S]

    Creates a copy of this iterator.

    Creates a copy of this iterator.

    Definition Classes
    MappedIterableSplitter
  31. def duplicate: (Iterator[S], Iterator[S])
    Definition Classes
    Iterator
  32. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  34. def exists(p: (S) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  35. def filter(p: (S) => Boolean): Iterator[S]
    Definition Classes
    Iterator → IterableOnceOps
  36. def filter2combiner[U >: S, This](pred: (S) => Boolean, cb: Combiner[U, This]): Combiner[U, This]
    Definition Classes
    AugmentedIterableIterator
  37. def filterNot(p: (S) => Boolean): Iterator[S]
    Definition Classes
    Iterator → IterableOnceOps
  38. def filterNot2combiner[U >: S, This](pred: (S) => Boolean, cb: Combiner[U, This]): Combiner[U, This]
    Definition Classes
    AugmentedIterableIterator
  39. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  40. def find(p: (S) => Boolean): Option[S]
    Definition Classes
    IterableOnceOps
  41. def flatMap[B](f: (S) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  42. def flatmap2combiner[S, That](f: (S) => scala.IterableOnce[S], cb: Combiner[S, That]): Combiner[S, That]
    Definition Classes
    AugmentedIterableIterator
  43. def flatten[B](implicit ev: (S) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  44. def fold[U >: S](z: U)(op: (U, U) => U): U
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  45. def foldLeft[B](z: B)(op: (B, S) => B): B
    Definition Classes
    IterableOnceOps
  46. def foldRight[B](z: B)(op: (S, B) => B): B
    Definition Classes
    IterableOnceOps
  47. def forall(p: (S) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  48. def foreach[U](f: (S) => U): Unit
    Definition Classes
    IterableOnceOps
  49. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  50. def grouped[B >: S](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  51. def hasNext: Boolean
    Definition Classes
    Mapped → Iterator
  52. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  53. def indexFlag: Int

    Returns the value of the index flag.

    Returns the value of the index flag.

    The index flag holds an integer which carries some operation-specific meaning. For instance, takeWhile operation sets the index flag to the position of the element where the predicate fails. Other workers may check this index against the indices they are working on and return if this index is smaller than their index. Examples of operations using this are takeWhile, dropWhile, span and indexOf.

    returns

    the value of the index flag

    Definition Classes
    DelegatedSignallingSignalling
  54. def indexOf[B >: S](elem: B, from: Int): Int
    Definition Classes
    Iterator
  55. def indexOf[B >: S](elem: B): Int
    Definition Classes
    Iterator
  56. def indexWhere(p: (S) => Boolean, from: Int): Int
    Definition Classes
    Iterator
  57. def isAborted: Boolean

    Checks whether an abort signal has been issued.

    Checks whether an abort signal has been issued.

    Abort flag being true means that a worker can abort and produce whatever result, since its result will not affect the final result of computation. An example of operations using this are find, forall and exists methods.

    returns

    the state of the abort

    Definition Classes
    DelegatedSignallingSignalling
  58. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding()
  59. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  60. def isRemainingCheap: Boolean

    For most collections, this is a cheap operation.

    For most collections, this is a cheap operation. Exceptions can override this method.

    Definition Classes
    RemainsIterator
  61. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  62. final def iterator: Iterator[S]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  63. def knownSize: Int
    Definition Classes
    IterableOnce
  64. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  65. def map[S](f: (S) => S): IterableSplitter[S]
    Definition Classes
    IterableSplitter → Iterator → IterableOnceOps
  66. def map2combiner[S, That](f: (S) => S, cb: Combiner[S, That]): Combiner[S, That]
    Definition Classes
    AugmentedIterableIterator
  67. def max[U >: S](implicit ord: Ordering[U]): S
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  68. def maxBy[B](f: (S) => B)(implicit cmp: math.Ordering[B]): S
    Definition Classes
    IterableOnceOps
  69. def maxByOption[B](f: (S) => B)(implicit cmp: math.Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  70. def maxOption[B >: S](implicit ord: math.Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  71. def min[U >: S](implicit ord: Ordering[U]): S
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  72. def minBy[B](f: (S) => B)(implicit cmp: math.Ordering[B]): S
    Definition Classes
    IterableOnceOps
  73. def minByOption[B](f: (S) => B)(implicit cmp: math.Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  74. def minOption[B >: S](implicit ord: math.Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  75. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  76. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  77. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  78. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  79. def next(): S
    Definition Classes
    Mapped → Iterator
  80. def nextOption(): Option[S]
    Definition Classes
    Iterator
  81. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  82. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  83. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  84. def padTo[B >: S](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  85. def partition(p: (S) => Boolean): (Iterator[S], Iterator[S])
    Definition Classes
    Iterator
  86. def partition2combiners[U >: S, This](pred: (S) => Boolean, btrue: Combiner[U, This], bfalse: Combiner[U, This]): (Combiner[U, This], Combiner[U, This])
    Definition Classes
    AugmentedIterableIterator
  87. def patch[B >: S](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  88. def product[U >: S](implicit num: Numeric[U]): U
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  89. def reduce[U >: S](op: (U, U) => U): U
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  90. def reduceLeft[U >: S](howmany: Int, op: (U, U) => U): U
    Definition Classes
    AugmentedIterableIterator
  91. def reduceLeft[B >: S](op: (B, S) => B): B
    Definition Classes
    IterableOnceOps
  92. def reduceLeftOption[B >: S](op: (B, S) => B): Option[B]
    Definition Classes
    IterableOnceOps
  93. def reduceOption[B >: S](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  94. def reduceRight[B >: S](op: (S, B) => B): B
    Definition Classes
    IterableOnceOps
  95. def reduceRightOption[B >: S](op: (S, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  96. def remaining: Int

    The number of elements this iterator has yet to traverse.

    The number of elements this iterator has yet to traverse. This method doesn't change the state of the iterator.

    This method is used to provide size hints to builders and combiners, and to approximate positions of iterators within a data structure.

    Note: This method may be implemented to return an upper bound on the number of elements in the iterator, instead of the exact number of elements to iterate. Parallel collections which have such iterators are called non-strict-splitter collections.

    In that case, 2 considerations must be taken into account:

    1) classes that inherit ParIterable must reimplement methods take, drop, slice, splitAt, copyToArray and all others using this information.

    2) if an iterator provides an upper bound on the number of elements, then after splitting the sum of remaining values of split iterators must be less than or equal to this upper bound.

    Definition Classes
    MappedIterableSplitter → RemainsIterator
  97. def reversed: Iterable[S]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  98. def sameElements[B >: S](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  99. def scanLeft[B](z: B)(op: (B, S) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  100. def scanToArray[U >: S, A >: U](z: U, op: (U, U) => U, array: Array[A], from: Int): Unit
    Definition Classes
    AugmentedIterableIterator
  101. def scanToCombiner[U >: S, That](howmany: Int, startValue: U, op: (U, U) => U, cb: Combiner[U, That]): Combiner[U, That]
    Definition Classes
    AugmentedIterableIterator
  102. def scanToCombiner[U >: S, That](startValue: U, op: (U, U) => U, cb: Combiner[U, That]): Combiner[U, That]
    Definition Classes
    AugmentedIterableIterator
  103. def setIndexFlag(f: Int): Unit

    Sets the value of the index flag.

    Sets the value of the index flag.

    The index flag holds an integer which carries some operation-specific meaning. For instance, takeWhile operation sets the index flag to the position of the element where the predicate fails. Other workers may check this index against the indices they are working on and return if this index is smaller than their index. Examples of operations using this are takeWhile, dropWhile, span and indexOf.

    f

    the value to which the index flag is set.

    Definition Classes
    DelegatedSignallingSignalling
  104. def setIndexFlagIfGreater(f: Int): Unit

    Sets the value of the index flag if argument is greater than current value.

    Sets the value of the index flag if argument is greater than current value. This method does this atomically.

    The index flag holds an integer which carries some operation-specific meaning. For instance, takeWhile operation sets the index flag to the position of the element where the predicate fails. Other workers may check this index against the indices they are working on and return if this index is smaller than their index. Examples of operations using this are takeWhile, dropWhile, span and indexOf.

    f

    the value to which the index flag is set

    Definition Classes
    DelegatedSignallingSignalling
  105. def setIndexFlagIfLesser(f: Int): Unit

    Sets the value of the index flag if argument is lesser than current value.

    Sets the value of the index flag if argument is lesser than current value. This method does this atomically.

    The index flag holds an integer which carries some operation-specific meaning. For instance, takeWhile operation sets the index flag to the position of the element where the predicate fails. Other workers may check this index against the indices they are working on and return if this index is smaller than their index. Examples of operations using this are takeWhile, dropWhile, span and indexOf.

    f

    the value to which the index flag is set

    Definition Classes
    DelegatedSignallingSignalling
  106. def shouldSplitFurther[S](coll: ParIterable[S], parallelismLevel: Int): Boolean
    Definition Classes
    IterableSplitter
  107. val signalDelegate: Signalling

    A delegate that method calls are redirected to.

    A delegate that method calls are redirected to.

    Definition Classes
    IterableSplitterDelegatedSignalling
  108. def size: Int
    Definition Classes
    IterableOnceOps
  109. def slice(from1: Int, until1: Int): IterableSplitter[S]
    Definition Classes
    IterableSplitter → Iterator → IterableOnceOps
  110. def slice2combiner[U >: S, This](from: Int, until: Int, cb: Combiner[U, This]): Combiner[U, This]
    Definition Classes
    AugmentedIterableIterator
  111. def sliceIterator(from: Int, until: Int): Iterator[S]
    Attributes
    protected
    Definition Classes
    Iterator
  112. def sliding[B >: S](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  113. def span(p: (S) => Boolean): (Iterator[S], Iterator[S])
    Definition Classes
    Iterator → IterableOnceOps
  114. def span2combiners[U >: S, This](p: (S) => Boolean, before: Combiner[U, This], after: Combiner[U, This]): (Combiner[U, This], Combiner[U, This])
    Definition Classes
    AugmentedIterableIterator
  115. def split: scala.Seq[IterableSplitter[S]]

    Splits the iterator into a sequence of disjunct views.

    Splits the iterator into a sequence of disjunct views.

    Returns a sequence of split iterators, each iterating over some subset of the elements in the collection. These subsets are disjoint and should be approximately equal in size. These subsets are not empty, unless the iterator is empty in which case this method returns a sequence with a single empty iterator. If the splitter has more than two elements, this method will return two or more splitters.

    Implementors are advised to keep this partition relatively small - two splitters are already enough when partitioning the collection, although there may be a few more.

    Note: this method actually invalidates the current splitter.

    returns

    a sequence of disjunct iterators of the collection

    Definition Classes
    MappedIterableSplitterSplitter
  116. def splitAt(n: Int): (Iterator[S], Iterator[S])
    Definition Classes
    IterableOnceOps
  117. def splitAt2combiners[U >: S, This](at: Int, before: Combiner[U, This], after: Combiner[U, This]): (Combiner[U, This], Combiner[U, This])
    Definition Classes
    AugmentedIterableIterator
  118. def splitWithSignalling: scala.Seq[IterableSplitter[S]]
    Definition Classes
    IterableSplitter
  119. def stepper[S <: Stepper[_]](implicit shape: StepperShape[S, S]): S
    Definition Classes
    IterableOnce
  120. def sum[U >: S](implicit num: Numeric[U]): U
    Definition Classes
    AugmentedIterableIterator → IterableOnceOps
  121. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  122. def tag: Int

    A read only tag specific to the signalling object.

    A read only tag specific to the signalling object. It is used to give specific workers information on the part of the collection being operated on.

    Definition Classes
    DelegatedSignallingSignalling
  123. def take(n: Int): IterableSplitter[S]
    Definition Classes
    IterableSplitter → Iterator → IterableOnceOps
  124. def take2combiner[U >: S, This](n: Int, cb: Combiner[U, This]): Combiner[U, This]
    Definition Classes
    AugmentedIterableIterator
  125. def takeWhile(p: (S) => Boolean): Iterator[S]
    Definition Classes
    Iterator → IterableOnceOps
  126. def takeWhile2combiner[U >: S, This](p: (S) => Boolean, cb: Combiner[U, This]): (Combiner[U, This], Boolean)
    Definition Classes
    AugmentedIterableIterator
  127. def tapEach[U](f: (S) => U): Iterator[S]
    Definition Classes
    Iterator → IterableOnceOps
  128. def to[C1](factory: Factory[S, C1]): C1
    Definition Classes
    IterableOnceOps
  129. def toArray[B >: S](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  130. final def toBuffer[B >: S]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  131. def toIndexedSeq: immutable.IndexedSeq[S]
    Definition Classes
    IterableOnceOps
  132. def toList: immutable.List[S]
    Definition Classes
    IterableOnceOps
  133. def toMap[K, V](implicit ev: <:<[S, (K, V)]): immutable.Map[K, V]
    Definition Classes
    IterableOnceOps
  134. def toSeq: immutable.Seq[S]
    Definition Classes
    IterableOnceOps
  135. def toSet[B >: S]: immutable.Set[B]
    Definition Classes
    IterableOnceOps
  136. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  137. def toVector: immutable.Vector[S]
    Definition Classes
    IterableOnceOps
  138. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  139. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  140. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  141. def withFilter(p: (S) => Boolean): Iterator[S]
    Definition Classes
    Iterator
  142. def zip[B](that: IterableOnce[B]): Iterator[(S, B)]
    Definition Classes
    Iterator
  143. def zip2combiner[U >: S, S, That](otherpit: RemainsIterator[S], cb: Combiner[(U, S), That]): Combiner[(U, S), That]
    Definition Classes
    AugmentedIterableIterator
  144. def zipAll[A1 >: S, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  145. def zipAll2combiner[U >: S, S, That](that: RemainsIterator[S], thiselem: U, thatelem: S, cb: Combiner[(U, S), That]): Combiner[(U, S), That]
    Definition Classes
    AugmentedIterableIterator
  146. def zipAllParSeq[S, U >: S, R >: S](that: SeqSplitter[S], thisElem: U, thatElem: R): ZippedAll[U, R]
    Definition Classes
    IterableSplitter
  147. def zipParSeq[S](that: SeqSplitter[S]): IterableSplitter[(S, S)]
    Definition Classes
    IterableSplitter
  148. def zipWithIndex: Iterator[(S, Int)]
    Definition Classes
    Iterator → IterableOnceOps

Deprecated Value Members

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

  3. def aggregate[B](z: => B)(seqop: (B, S) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

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

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

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

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

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

  7. def seq: Mapped.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

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

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

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

  9. final def toStream: immutable.Stream[S]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

Inherited from IterableSplitter[S]

Inherited from DelegatedSignalling

Inherited from Signalling

Inherited from Splitter[S]

Inherited from AugmentedIterableIterator[S]

Inherited from RemainsIterator[S]

Inherited from Iterator[S]

Inherited from IterableOnceOps[S, Iterator, Iterator[S]]

Inherited from IterableOnce[S]

Inherited from AnyRef

Inherited from Any

Ungrouped