Scala Standard Library 2.13.1 - 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): mutable.StringBuilder
  8. final def addString(b: mutable.StringBuilder, sep: String): mutable.StringBuilder
  9. def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder
  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 formatted(fmtstr: String): String
  43. def fromSpecific(coll: IterableOnce[A]): CC[A]
  44. final def getClass(): Class[_ <: AnyRef]
  45. def groupBy[K](f: (A) => K): immutable.Map[K, CC[A @scala.annotation.unchecked.uncheckedVariance]]
  46. def groupMap[K, B](key: (A) => K)(f: (A) => B): immutable.Map[K, CC[B]]
  47. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): immutable.Map[K, B]
  48. def grouped(size: Int): Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  49. def hashCode(): Int
  50. def head: A
  51. def headOption: Option[A]
  52. def init: CC[A @scala.annotation.unchecked.uncheckedVariance]
  53. def inits: Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  54. def isEmpty: Boolean
  55. final def isInstanceOf[T0]: Boolean
  56. def isTraversableAgain: Boolean
  57. def knownSize: Int
  58. def last: A
  59. def lastOption: Option[A]
  60. def map[B](f: (A) => B): CC[B]
  61. def max[B >: A](implicit ord: math.Ordering[B]): A
  62. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  63. def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
  64. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
  65. def min[B >: A](implicit ord: math.Ordering[B]): A
  66. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  67. def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
  68. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
  69. final def mkString: String
  70. final def mkString(sep: String): String
  71. final def mkString(start: String, sep: String, end: String): String
  72. final def ne(arg0: AnyRef): Boolean
  73. def newSpecificBuilder: Builder[A, CC[A]]
  74. def nonEmpty: Boolean
  75. final def notify(): Unit
  76. final def notifyAll(): Unit
  77. def partition(p: (A) => Boolean): (CC[A @scala.annotation.unchecked.uncheckedVariance], CC[A @scala.annotation.unchecked.uncheckedVariance])
  78. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (CC[A1], CC[A2])
  79. def product[B >: A](implicit num: math.Numeric[B]): B
  80. def reduce[B >: A](op: (B, B) => B): B
  81. def reduceLeft[B >: A](op: (B, A) => B): B
  82. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
  83. def reduceOption[B >: A](op: (B, B) => B): Option[B]
  84. def reduceRight[B >: A](op: (A, B) => B): B
  85. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
  86. def reversed: Iterable[A]
  87. def scan[B >: A](z: B)(op: (B, B) => B): CC[B]
  88. def scanLeft[B](z: B)(op: (B, A) => B): CC[B]
  89. def scanRight[B](z: B)(op: (A, B) => B): CC[B]
  90. def size: Int
  91. def sizeCompare(that: Iterable[_]): Int
  92. def sizeCompare(otherSize: Int): Int
  93. final def sizeIs: SizeCompareOps
  94. def slice(from: Int, until: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  95. def sliding(size: Int, step: Int): Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  96. def sliding(size: Int): Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  97. def span(p: (A) => Boolean): (CC[A @scala.annotation.unchecked.uncheckedVariance], CC[A @scala.annotation.unchecked.uncheckedVariance])
  98. def splitAt(n: Int): (CC[A @scala.annotation.unchecked.uncheckedVariance], CC[A @scala.annotation.unchecked.uncheckedVariance])
  99. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
  100. def sum[B >: A](implicit num: math.Numeric[B]): B
  101. final def synchronized[T0](arg0: => T0): T0
  102. def tail: CC[A @scala.annotation.unchecked.uncheckedVariance]
  103. def tails: Iterator[CC[A @scala.annotation.unchecked.uncheckedVariance]]
  104. def take(n: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  105. def takeRight(n: Int): CC[A @scala.annotation.unchecked.uncheckedVariance]
  106. def takeWhile(p: (A) => Boolean): CC[A @scala.annotation.unchecked.uncheckedVariance]
  107. def tapEach[U](f: (A) => U): CC[A @scala.annotation.unchecked.uncheckedVariance]
  108. def to[C1](factory: Factory[A, C1]): C1
  109. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  110. final def toBuffer[B >: A]: Buffer[B]
  111. def toIndexedSeq: immutable.IndexedSeq[A]
  112. def toList: immutable.List[A]
  113. def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
  114. def toSeq: immutable.Seq[A]
  115. def toSet[B >: A]: immutable.Set[B]
  116. def toString(): String
  117. def toVector: immutable.Vector[A]
  118. def transpose[B](implicit asIterable: (A) => Iterable[B]): CC[CC[B]]
  119. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (CC[A1], CC[A2])
  120. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3])
  121. def view: View[A]
  122. final def wait(): Unit
  123. final def wait(arg0: Long, arg1: Int): Unit
  124. final def wait(arg0: Long): Unit
  125. def withFilter(p: (A) => Boolean): WithFilter[A, CC]
  126. def zip[B](that: IterableOnce[B]): CC[(A, B)]
  127. def zipAll[A1 >: A, B](that: Iterable[B], thisElem: A1, thatElem: B): CC[(A1, B)]
  128. 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 hasDefiniteSize: Boolean
  22. def isEmpty: Boolean
  23. def map[B](f: (A) => B): IterableOnce[B]
  24. def max(implicit ord: math.Ordering[A]): A
  25. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  26. def min(implicit ord: math.Ordering[A]): A
  27. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  28. def mkString: String
  29. def mkString(sep: String): String
  30. def mkString(start: String, sep: String, end: String): String
  31. def nonEmpty: Boolean
  32. def product(implicit num: math.Numeric[A]): A
  33. def reduce(f: (A, A) => A): A
  34. def reduceLeft(f: (A, A) => A): A
  35. def reduceLeftOption(f: (A, A) => A): Option[A]
  36. def reduceOption(f: (A, A) => A): Option[A]
  37. def reduceRight(f: (A, A) => A): A
  38. def reduceRightOption(f: (A, A) => A): Option[A]
  39. final def repr: CC[A @scala.annotation.unchecked.uncheckedVariance]
  40. def sameElements[B >: A](that: IterableOnce[B]): Boolean
  41. def size: Int
  42. def sum(implicit num: math.Numeric[A]): A
  43. def to[C1](factory: Factory[A, C1]): C1
  44. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  45. def toBuffer[B >: A]: Buffer[B]
  46. def toIndexedSeq: IndexedSeq[A]
  47. final def toIterable: Iterable[A]
  48. def toIterator: Iterator[A]
  49. final def toIterator: Iterator[A]
  50. def toList: immutable.List[A]
  51. def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
  52. def toSeq: immutable.Seq[A]
  53. def toSet[B >: A]: immutable.Set[B]
  54. def toStream: immutable.Stream[A]
  55. final def toStream: immutable.Stream[A]
  56. final def toTraversable: Traversable[A]
  57. final def toTraversable: Traversable[A]
  58. def toVector: immutable.Vector[A]
  59. def view(from: Int, until: Int): View[A]
  60. def withFilter(f: (A) => Boolean): Iterator[A]
  61. 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