Scala Standard Library 2.13.1 - scala.collection.IterableOnceOps (original) (raw)
trait IterableOnceOps[+A, +CC[_], +C] extends Any
Ordering
- Alphabetic
- By Inheritance
Inherited
- IterableOnceOps
- Any
Implicitly
by any2stringadd
by StringFormat
by Ensuring
by ArrowAssoc
Hide All
Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def collect[B](pf: PartialFunction[A, B]): CC[B]
- abstract def drop(n: Int): C
- abstract def dropWhile(p: (A) => Boolean): C
- abstract def filter(p: (A) => Boolean): C
- abstract def filterNot(pred: (A) => Boolean): C
- abstract def flatMap[B](f: (A) => IterableOnce[B]): CC[B]
- abstract def flatten[B](implicit asIterable: (A) => IterableOnce[B]): CC[B]
- abstract def getClass(): Class[_ <: AnyRef]
- abstract def map[B](f: (A) => B): CC[B]
- abstract def scanLeft[B](z: B)(op: (B, A) => B): CC[B]
- abstract def slice(from: Int, until: Int): C
- abstract def span(p: (A) => Boolean): (C, C)
- abstract def take(n: Int): C
- abstract def takeWhile(p: (A) => Boolean): C
- abstract def tapEach[U](f: (A) => U): C
- abstract def zipWithIndex: CC[(A, Int)]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- final def ##(): Int
- def +(other: String): String
- def ->[B](y: B): (IterableOnceOps[A, CC, C], B)
- final def ==(arg0: Any): Boolean
- final def addString(b: mutable.StringBuilder): mutable.StringBuilder
- final def addString(b: mutable.StringBuilder, sep: String): mutable.StringBuilder
- def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder
- final def asInstanceOf[T0]: T0
- def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
- def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
- def copyToArray[B >: A](xs: Array[B], start: Int): Int
- def copyToArray[B >: A](xs: Array[B]): Int
- def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
- def count(p: (A) => Boolean): Int
- def ensuring(cond: (IterableOnceOps[A, CC, C]) => Boolean, msg: => Any): IterableOnceOps[A, CC, C]
- def ensuring(cond: (IterableOnceOps[A, CC, C]) => Boolean): IterableOnceOps[A, CC, C]
- def ensuring(cond: Boolean, msg: => Any): IterableOnceOps[A, CC, C]
- def ensuring(cond: Boolean): IterableOnceOps[A, CC, C]
- def equals(arg0: Any): Boolean
- def exists(p: (A) => Boolean): Boolean
- def find(p: (A) => Boolean): Option[A]
- def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- def foldLeft[B](z: B)(op: (B, A) => B): B
- def foldRight[B](z: B)(op: (A, B) => B): B
- def forall(p: (A) => Boolean): Boolean
- def foreach[U](f: (A) => U): Unit
- def formatted(fmtstr: String): String
- def hashCode(): Int
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- def isTraversableAgain: Boolean
- def max[B >: A](implicit ord: math.Ordering[B]): A
- def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
- def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
- def min[B >: A](implicit ord: math.Ordering[B]): A
- def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
- def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
- final def mkString: String
- final def mkString(sep: String): String
- final def mkString(start: String, sep: String, end: String): String
- def nonEmpty: Boolean
- def product[B >: A](implicit num: math.Numeric[B]): B
- def reduce[B >: A](op: (B, B) => B): B
- def reduceLeft[B >: A](op: (B, A) => B): B
- def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
- def reduceOption[B >: A](op: (B, B) => B): Option[B]
- def reduceRight[B >: A](op: (A, B) => B): B
- def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
- def reversed: Iterable[A]
- def size: Int
- def splitAt(n: Int): (C, C)
- def sum[B >: A](implicit num: math.Numeric[B]): B
- def to[C1](factory: Factory[A, C1]): C1
- def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- final def toBuffer[B >: A]: Buffer[B]
- def toIndexedSeq: immutable.IndexedSeq[A]
- def toList: immutable.List[A]
- def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
- def toSeq: immutable.Seq[A]
- def toSet[B >: A]: immutable.Set[B]
- def toString(): String
- def toVector: immutable.Vector[A]
Deprecated Value Members
- final def /:[B](z: B)(op: (B, A) => B): B
- final def :\[B](z: B)(op: (A, B) => B): B
- def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
- final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
- def hasDefiniteSize: Boolean
- final def toIterator: Iterator[A]
- final def toStream: immutable.Stream[A]
- def →[B](y: B): (IterableOnceOps[A, CC, C], B)