Packages

t

scalax.collection

ForeachBasedDetachingIterable

trait ForeachBasedDetachingIterable[+A] extends Iterable[A]

Substitute for Scala 2.12 Traversable to continue support for collections that cannot implement hasNext/next easily. The methods of Scala 2.13's IterableOnce are implemented in terms of foreach.

All methods with a collection result detach from this Iterable to Vector. This makes sense whenever the foreach implementation - causes significant computation overhead or - is not valid for arbitrary subcollections.

Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ForeachBasedDetachingIterable
  2. Iterable
  3. IterableFactoryDefaults
  4. IterableOps
  5. IterableOnceOps
  6. IterableOnce
  7. AnyRef
  8. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by ChainingOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def autarkicForeach[U](f: (A) => U): Unit
    Attributes
    protected

Concrete 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 ForeachBasedDetachingIterable[A] toany2stringadd[ForeachBasedDetachingIterable[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: A](suffix: scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (ForeachBasedDetachingIterable[A], B)
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toArrowAssoc[ForeachBasedDetachingIterable[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  8. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  13. final def coll: ForeachBasedDetachingIterable.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  14. final def collect[B](pf: PartialFunction[A, B]): Iterable[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  15. final def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  16. def concat[B >: A](suffix: scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  17. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  18. def copyToArray[B >: A](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  19. def copyToArray[B >: A](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  20. def corresponds[B](that: scala.collection.IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  21. final def count(p: (A) => Boolean): Int
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  22. final def drop(n: Int): CC[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
    Annotations
    @inline()
  23. def dropRight(n: Int): Iterable[A]
    Definition Classes
    IterableOps
  24. final def dropWhile(p: (A) => Boolean): CC[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  25. def empty: Iterable[A]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  26. def ensuring(cond: (ForeachBasedDetachingIterable[A]) => Boolean, msg: => Any): ForeachBasedDetachingIterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toEnsuring[ForeachBasedDetachingIterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: (ForeachBasedDetachingIterable[A]) => Boolean): ForeachBasedDetachingIterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toEnsuring[ForeachBasedDetachingIterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: Boolean, msg: => Any): ForeachBasedDetachingIterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toEnsuring[ForeachBasedDetachingIterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean): ForeachBasedDetachingIterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toEnsuring[ForeachBasedDetachingIterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  32. final def exists(p: (A) => Boolean): Boolean
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  33. final def filter(p: (A) => Boolean): CC[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
    Annotations
    @inline()
  34. final def filterNot(p: (A) => Boolean): CC[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
    Annotations
    @inline()
  35. final def find(p: (A) => Boolean): Option[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  36. final def flatMap[B](f: (A) => IterableOnce[B]): Iterable[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  37. def flatten[B](implicit asIterable: (A) => scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  38. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  39. final def foldLeft[B](z: B)(op: (B, A) => B): B
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  40. def foldRight[B](z: B)(op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
  41. final def forall(p: (A) => Boolean): Boolean
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  42. final def foreach[U](f: (A) => U): Unit
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  43. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toStringFormat[ForeachBasedDetachingIterable[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  44. def fromSpecific(coll: scala.collection.IterableOnce[A]): Iterable[A]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  45. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  46. def groupBy[K](f: (A) => K): Map[K, Iterable[A]]
    Definition Classes
    IterableOps
  47. def groupMap[K, B](key: (A) => K)(f: (A) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  48. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  49. def grouped(size: Int): Iterator[Iterable[A]]
    Definition Classes
    IterableOps
  50. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  51. final def head: A
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps
  52. final def headOption: Option[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps
  53. def init: Iterable[A]
    Definition Classes
    IterableOps
  54. def inits: Iterator[Iterable[A]]
    Definition Classes
    IterableOps
  55. final def isEmpty: Boolean
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  56. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  57. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  58. def iterableFactory: IterableFactory[Vector]
    Definition Classes
    ForeachBasedDetachingIterable → Iterable → IterableOps
  59. def iterator: Iterator[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnce
  60. def knownSize: Int
    Definition Classes
    IterableOnce
  61. def last: A
    Definition Classes
    IterableOps
  62. def lastOption: Option[A]
    Definition Classes
    IterableOps
  63. def lazyZip[B](that: Iterable[B]): LazyZip2[A, B, ForeachBasedDetachingIterable.this.type]
    Definition Classes
    Iterable
  64. final def map[B](f: (A) => B): Iterable[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  65. final def max[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  66. final def maxBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  67. final def maxByOption[B](f: (A) => B)(implicit cmp: Ordering[B]): Option[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  68. final def maxOption[B >: A](implicit ord: Ordering[B]): Option[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  69. final def min[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  70. final def minBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  71. final def minByOption[B](f: (A) => B)(implicit cmp: Ordering[B]): Option[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  72. final def minOption[B >: A](implicit ord: Ordering[B]): Option[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  73. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  74. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  75. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  76. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  77. def newSpecificBuilder: scala.collection.mutable.Builder[A, Iterable[A]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  78. final def nonEmpty: Boolean
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  79. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  80. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  81. def partition(p: (A) => Boolean): (Iterable[A], Iterable[A])
    Definition Classes
    IterableOps
  82. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  83. def pipe[B](f: (ForeachBasedDetachingIterable[A]) => B): B
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toChainingOps[ForeachBasedDetachingIterable[A]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  84. final def product[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  85. final def reduce[B >: A](op: (B, B) => B): B
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  86. final def reduceLeft[B >: A](op: (B, A) => B): B
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  87. final def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  88. final def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  89. def reduceRight[B >: A](op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
  90. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  91. def reversed: Iterable[A]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  92. def scan[B >: A](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  93. final def scanLeft[B](z: B)(op: (B, A) => B): CC[B]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  94. def scanRight[B](z: B)(op: (A, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  95. val self: ForeachBasedDetachingIterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toChainingOps[ForeachBasedDetachingIterable[A]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  96. final def size: Int
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  97. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  98. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  99. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  100. final def slice(from: Int, until: Int): CC[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  101. def sliding(size: Int, step: Int): Iterator[Iterable[A]]
    Definition Classes
    IterableOps
  102. def sliding(size: Int): Iterator[Iterable[A]]
    Definition Classes
    IterableOps
  103. final def span(p: (A) => Boolean): (CC[A], CC[A])
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  104. final def splitAt(n: Int): (CC[A], CC[A])
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  105. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
    Definition Classes
    IterableOnce
  106. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  107. final def sum[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
    Annotations
    @inline()
  108. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  109. def tail: Iterable[A]
    Definition Classes
    IterableOps
  110. def tails: Iterator[Iterable[A]]
    Definition Classes
    IterableOps
  111. final def take(n: Int): Iterable[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  112. def takeRight(n: Int): Iterable[A]
    Definition Classes
    IterableOps
  113. final def takeWhile(p: (A) => Boolean): CC[A]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps
  114. def tap[U](f: (ForeachBasedDetachingIterable[A]) => U): ForeachBasedDetachingIterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toChainingOps[ForeachBasedDetachingIterable[A]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  115. def tapEach[U](f: (A) => U): Iterable[A]
    Definition Classes
    IterableOps → IterableOnceOps
  116. final def to[C1](factory: Factory[A, C1]): C1
    Definition Classes
    ForeachBasedDetachingIterable → IterableOnceOps
  117. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  118. final def toBuffer[B >: A]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  119. def toIndexedSeq: IndexedSeq[A]
    Definition Classes
    IterableOnceOps
  120. final def toIterable: ForeachBasedDetachingIterable.this.type
    Definition Classes
    Iterable → IterableOps
  121. def toList: List[A]
    Definition Classes
    IterableOnceOps
  122. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  123. def toSeq: Seq[A]
    Definition Classes
    IterableOnceOps
  124. def toSet[B >: A]: Set[B]
    Definition Classes
    IterableOnceOps
  125. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  126. def toVector: Vector[A]
    Definition Classes
    IterableOnceOps
  127. def transpose[B](implicit asIterable: (A) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  128. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  129. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  130. def view: View[A]
    Definition Classes
    IterableOps
  131. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  132. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  133. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  134. def withFilter(p: (A) => Boolean): WithFilter[A, Iterable]
    Definition Classes
    IterableOps
  135. def zip[B](that: scala.collection.IterableOnce[B]): Iterable[(A, B)]
    Definition Classes
    IterableOps
  136. def zipAll[A1 >: A, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  137. final def zipWithIndex: CC[(A, Int)]
    Definition Classes
    ForeachBasedDetachingIterable → IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: A](that: scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  3. 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 /:

  4. def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

  7. def collectFirst[B](f: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  8. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[A]): Unit
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

  11. def count(f: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  12. def exists(f: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  13. def filter(f: (A) => Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  15. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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) => scala.collection.IterableOnce[B]): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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 ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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 ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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 ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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 ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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 ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  22. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  23. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: 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 max(implicit ord: Ordering[A]): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  26. def maxBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  27. def min(implicit ord: Ordering[A]): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  28. def minBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  29. def mkString: String
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  30. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  33. def product(implicit num: Numeric[A]): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  34. def reduce(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  35. def reduceLeft(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  36. def reduceLeftOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  37. def reduceOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  38. def reduceRight(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  39. def reduceRightOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  40. final def repr: Iterable[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  41. def sameElements[B >: A](that: scala.collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  42. def seq: ForeachBasedDetachingIterable.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  43. def size: Int
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  44. def sum(implicit num: Numeric[A]): A
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  45. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  46. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  47. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  48. def toIndexedSeq: IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  49. final def toIterable: Iterable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  50. def toIterator: Iterator[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  52. def toList: List[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  53. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  54. def toSeq: Seq[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  55. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  56. def toStream: Stream[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  58. final def toTraversable: Traversable[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  59. final def toTraversable: Traversable[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  60. def toVector: Vector[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  61. def view(from: Int, until: Int): View[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  62. def withFilter(f: (A) => Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[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:
    (foreachBasedDetachingIterable: IterableOnceExtensionMethods[A]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  63. def [B](y: B): (ForeachBasedDetachingIterable[A], B)
    Implicit
    This member is added by an implicit conversion from ForeachBasedDetachingIterable[A] toArrowAssoc[ForeachBasedDetachingIterable[A]] performed by method ArrowAssoc in scala.Predef.
    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 Iterable[A]

Inherited from IterableOps[A, Iterable, Iterable[A]]

Inherited from IterableOnceOps[A, Iterable, Iterable[A]]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion ChainingOps fromForeachBasedDetachingIterable[A] to ChainingOps[ForeachBasedDetachingIterable[A]]

Inherited by implicit conversion any2stringadd fromForeachBasedDetachingIterable[A] to any2stringadd[ForeachBasedDetachingIterable[A]]

Inherited by implicit conversion StringFormat fromForeachBasedDetachingIterable[A] to StringFormat[ForeachBasedDetachingIterable[A]]

Inherited by implicit conversion Ensuring fromForeachBasedDetachingIterable[A] to Ensuring[ForeachBasedDetachingIterable[A]]

Inherited by implicit conversion ArrowAssoc fromForeachBasedDetachingIterable[A] to ArrowAssoc[ForeachBasedDetachingIterable[A]]

Ungrouped