Scala Standard Library 2.13.15 - scala.collection.IterableFactoryDefaults (original) (raw)

trait IterableFactoryDefaults[+A, +CC[x] <: IterableOps[x, CC, CC[x]]] extends IterableOps[A, CC, CC[A]]

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. IterableFactoryDefaults
  2. IterableOps
  3. IterableOnceOps
  4. IterableOnce
  5. AnyRef
  6. Any

Implicitly

  1. by iterableOnceExtensionMethods

  2. by any2stringadd

  3. by StringFormat

  4. by Ensuring

  5. by ArrowAssoc

  6. Hide All

  7. Show All

Visibility

  1. Public
  2. Protected

Abstract Value Members

  1. abstract def coll: CC[A @scala.annotation.unchecked.uncheckedVariance]
  2. abstract def iterableFactory: IterableFactory[CC]
  3. abstract def iterator: Iterator[A]
  4. abstract def toIterable: Iterable[A]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
  2. final def ##: Int
  3. def +(other: String): String
  4. final def ++[B >: A](suffix: IterableOnce[B]): CC[B]
  5. def ->[B](y: B): (IterableFactoryDefaults[A, CC], B)
  6. final def ==(arg0: Any): Boolean
  7. final def addString(b: mutable.StringBuilder): b.type
  8. final def addString(b: mutable.StringBuilder, sep: String): b.type
  9. def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): b.type
  10. final def asInstanceOf[T0]: T0
  11. def clone(): AnyRef
  12. def collect[B](pf: PartialFunction[A, B]): CC[B]
  13. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
  14. def concat[B >: A](suffix: IterableOnce[B]): CC[B]
  15. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
  16. def copyToArray[B >: A](xs: Array[B], start: Int): Int
  17. def copyToArray[B >: A](xs: Array[B]): Int
  18. def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
  19. def count(p: (A) => Boolean): Int
  20. def drop(n: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  21. def dropRight(n: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  22. def dropWhile(p: (A) => Boolean): CC[A @scala.annotation.unchecked.uncheckedVariance]
  23. def empty: CC[A]
  24. def ensuring(cond: (IterableFactoryDefaults[A, CC]) => Boolean, msg: => Any): IterableFactoryDefaults[A, CC]
  25. def ensuring(cond: (IterableFactoryDefaults[A, CC]) => Boolean): IterableFactoryDefaults[A, CC]
  26. def ensuring(cond: Boolean, msg: => Any): IterableFactoryDefaults[A, CC]
  27. def ensuring(cond: Boolean): IterableFactoryDefaults[A, CC]
  28. final def eq(arg0: AnyRef): Boolean
  29. def equals(arg0: AnyRef): Boolean
  30. def exists(p: (A) => Boolean): Boolean
  31. def filter(pred: (A) => Boolean): CC[A @scala.annotation.unchecked.uncheckedVariance]
  32. def filterNot(pred: (A) => Boolean): CC[A @scala.annotation.unchecked.uncheckedVariance]
  33. def finalize(): Unit
  34. def find(p: (A) => Boolean): Option[A]
  35. def flatMap[B](f: (A) => IterableOnce[B]): CC[B]
  36. def flatten[B](implicit asIterable: (A) => IterableOnce[B]): CC[B]
  37. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  38. def foldLeft[B](z: B)(op: (B, A) => B): B
  39. def foldRight[B](z: B)(op: (A, B) => B): B
  40. def forall(p: (A) => Boolean): Boolean
  41. def foreach[U](f: (A) => U): Unit
  42. def fromSpecific(coll: IterableOnce[A]): CC[A]
  43. final def getClass(): Class[_ <: AnyRef]
  44. def groupBy[K](f: (A) => K): immutable.Map[K, CC[A @scala.annotation.unchecked.uncheckedVariance]]
  45. def groupMap[K, B](key: (A) => K)(f: (A) => B): immutable.Map[K, CC[B]]
  46. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): immutable.Map[K, B]
  47. def grouped(size: Int): Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  48. def hashCode(): Int
  49. def head: A
  50. def headOption: Option[A]
  51. def init: CC[A @scala.annotation.unchecked.uncheckedVariance]
  52. def inits: Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  53. def isEmpty: Boolean
  54. final def isInstanceOf[T0]: Boolean
  55. def isTraversableAgain: Boolean
  56. def knownSize: Int
  57. def last: A
  58. def lastOption: Option[A]
  59. def map[B](f: (A) => B): CC[B]
  60. def max[B >: A](implicit ord: math.Ordering[B]): A
  61. def maxBy[B](f: (A) => B)(implicit ord: math.Ordering[B]): A
  62. def maxByOption[B](f: (A) => B)(implicit ord: math.Ordering[B]): Option[A]
  63. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
  64. def min[B >: A](implicit ord: math.Ordering[B]): A
  65. def minBy[B](f: (A) => B)(implicit ord: math.Ordering[B]): A
  66. def minByOption[B](f: (A) => B)(implicit ord: math.Ordering[B]): Option[A]
  67. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
  68. final def mkString: String
  69. final def mkString(sep: String): String
  70. final def mkString(start: String, sep: String, end: String): String
  71. final def ne(arg0: AnyRef): Boolean
  72. def newSpecificBuilder: Builder[A, CC[A]]
  73. def nonEmpty: Boolean
  74. final def notify(): Unit
  75. final def notifyAll(): Unit
  76. def partition(p: (A) => Boolean): (CC[A @scala.annotation.unchecked.uncheckedVariance], CC[A @scala.annotation.unchecked.uncheckedVariance])
  77. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (CC[A1], CC[A2])
  78. def product[B >: A](implicit num: math.Numeric[B]): B
  79. def reduce[B >: A](op: (B, B) => B): B
  80. def reduceLeft[B >: A](op: (B, A) => B): B
  81. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
  82. def reduceOption[B >: A](op: (B, B) => B): Option[B]
  83. def reduceRight[B >: A](op: (A, B) => B): B
  84. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
  85. def reversed: Iterable[A]
  86. def scan[B >: A](z: B)(op: (B, B) => B): CC[B]
  87. def scanLeft[B](z: B)(op: (B, A) => B): CC[B]
  88. def scanRight[B](z: B)(op: (A, B) => B): CC[B]
  89. def size: Int
  90. def sizeCompare(that: Iterable[_]): Int
  91. def sizeCompare(otherSize: Int): Int
  92. final def sizeIs: SizeCompareOps
  93. def slice(from: Int, until: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  94. def sliding(size: Int, step: Int): Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  95. def sliding(size: Int): Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  96. def span(p: (A) => Boolean): (CC[A @scala.annotation.unchecked.uncheckedVariance], CC[A @scala.annotation.unchecked.uncheckedVariance])
  97. def splitAt(n: Int): (CC[A @scala.annotation.unchecked.uncheckedVariance], CC[A @scala.annotation.unchecked.uncheckedVariance])
  98. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
  99. def sum[B >: A](implicit num: math.Numeric[B]): B
  100. final def synchronized[T0](arg0: => T0): T0
  101. def tail: CC[A @scala.annotation.unchecked.uncheckedVariance]
  102. def tails: Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  103. def take(n: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  104. def takeRight(n: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  105. def takeWhile(p: (A) => Boolean): CC[A @scala.annotation.unchecked.uncheckedVariance]
  106. def tapEach[U](f: (A) => U): CC[A @scala.annotation.unchecked.uncheckedVariance]
  107. def to[C1](factory: Factory[A, C1]): C1
  108. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  109. final def toBuffer[B >: A]: Buffer[B]
  110. def toIndexedSeq: immutable.IndexedSeq[A]
  111. def toList: immutable.List[A]
  112. def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
  113. def toSeq: immutable.Seq[A]
  114. def toSet[B >: A]: immutable.Set[B]
  115. def toString(): String
  116. def toVector: immutable.Vector[A]
  117. def transpose[B](implicit asIterable: (A) => Iterable[B]): CC[CC[B]]
  118. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (CC[A1], CC[A2])
  119. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3])
  120. def view: View[A]
  121. final def wait(): Unit
  122. final def wait(arg0: Long, arg1: Int): Unit
  123. final def wait(arg0: Long): Unit
  124. def withFilter(p: (A) => Boolean): WithFilter[A, CC]
  125. def zip[B](that: IterableOnce[B]): CC[(A, B)]
  126. def zipAll[A1 >: A, B](that: Iterable[B], thisElem: A1, thatElem: B): CC[(A1, B)]
  127. def zipWithIndex: CC[(A, Int)]

Deprecated Value Members

  1. def ++:[B >: A](that: IterableOnce[B]): CC[B]
  2. def /:[B](z: B)(op: (B, A) => B): B
  3. final def /:[B](z: B)(op: (B, A) => B): B
  4. def :\[B](z: B)(op: (A, B) => B): B
  5. final def :\[B](z: B)(op: (A, B) => B): B
  6. def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
  7. def collectFirst[B](f: PartialFunction[A, B]): Option[B]
  8. def companion: IterableFactory[CC]
  9. def copyToBuffer(dest: Buffer[A]): Unit
  10. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
  11. def count(f: (A) => Boolean): Int
  12. def exists(f: (A) => Boolean): Boolean
  13. def filter(f: (A) => Boolean): Iterator[A]
  14. def find(p: (A) => Boolean): Option[A]
  15. def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
  16. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  17. def foldLeft[B](z: B)(op: (B, A) => B): B
  18. def foldRight[B](z: B)(op: (A, B) => B): B
  19. def forall(f: (A) => Boolean): Boolean
  20. def foreach[U](f: (A) => U): Unit
  21. def formatted(fmtstr: String): String
  22. def hasDefiniteSize: Boolean
  23. def isEmpty: Boolean
  24. def map[B](f: (A) => B): IterableOnce[B]
  25. def max(implicit ord: math.Ordering[A]): A
  26. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  27. def min(implicit ord: math.Ordering[A]): A
  28. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  29. def mkString: String
  30. def mkString(sep: String): String
  31. def mkString(start: String, sep: String, end: String): String
  32. def nonEmpty: Boolean
  33. def product(implicit num: math.Numeric[A]): A
  34. def reduce(f: (A, A) => A): A
  35. def reduceLeft(f: (A, A) => A): A
  36. def reduceLeftOption(f: (A, A) => A): Option[A]
  37. def reduceOption(f: (A, A) => A): Option[A]
  38. def reduceRight(f: (A, A) => A): A
  39. def reduceRightOption(f: (A, A) => A): Option[A]
  40. final def repr: CC[A @scala.annotation.unchecked.uncheckedVariance]
  41. def sameElements[B >: A](that: IterableOnce[B]): Boolean
  42. def size: Int
  43. def sum(implicit num: math.Numeric[A]): A
  44. def to[C1](factory: Factory[A, C1]): C1
  45. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  46. def toBuffer[B >: A]: Buffer[B]
  47. def toIndexedSeq: IndexedSeq[A]
  48. final def toIterable: Iterable[A]
  49. def toIterator: Iterator[A]
  50. final def toIterator: Iterator[A]
  51. def toList: immutable.List[A]
  52. def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
  53. def toSeq: immutable.Seq[A]
  54. def toSet[B >: A]: immutable.Set[B]
  55. def toStream: immutable.Stream[A]
  56. final def toStream: immutable.Stream[A]
  57. final def toTraversable: Traversable[A]
  58. final def toTraversable: Traversable[A]
  59. def toVector: immutable.Vector[A]
  60. def view(from: Int, until: Int): View[A]
  61. def withFilter(f: (A) => Boolean): Iterator[A]
  62. def →[B](y: B): (IterableFactoryDefaults[A, CC], B)

Inherited from IterableOps[A, CC, CC[A @scala.annotation.unchecked.uncheckedVariance]]

Inherited from IterableOnceOps[A, CC, CC[A @scala.annotation.unchecked.uncheckedVariance]]

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromIterableFactoryDefaults[A, CC] to IterableOnceExtensionMethods[A]

Inherited by implicit conversion any2stringadd fromIterableFactoryDefaults[A, CC] to any2stringadd[IterableFactoryDefaults[A, CC]]

Inherited by implicit conversion StringFormat fromIterableFactoryDefaults[A, CC] to StringFormat[IterableFactoryDefaults[A, CC]]

Inherited by implicit conversion Ensuring fromIterableFactoryDefaults[A, CC] to Ensuring[IterableFactoryDefaults[A, CC]]

Inherited by implicit conversion ArrowAssoc fromIterableFactoryDefaults[A, CC] to ArrowAssoc[IterableFactoryDefaults[A, CC]]

Ungrouped