IterableOnceExtensionMethods

scala.collection.IterableOnceExtensionMethods
final class IterableOnceExtensionMethods[A](it: IterableOnce[A]) extends AnyVal

Attributes

Source
IterableOnce.scala
Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Deprecated methods

def /:[B](z: B)(op: (B, A) => B): B

Attributes

Deprecated
true
Source
IterableOnce.scala
def :\[B](z: B)(op: (A, B) => B): B

Attributes

Deprecated
true
Source
IterableOnce.scala
def collectFirst[B](f: PartialFunction[A, B]): Option[B]

Attributes

Deprecated
true
Source
IterableOnce.scala
def copyToBuffer(dest: Buffer[A]): Unit

Attributes

Deprecated
true
Source
IterableOnce.scala
def count(f: A => Boolean): Int

Attributes

Deprecated
true
Source
IterableOnce.scala
def exists(f: A => Boolean): Boolean

Attributes

Deprecated
true
Source
IterableOnce.scala
def filter(f: A => Boolean): Iterator[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def find(p: A => Boolean): Option[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def flatMap[B](f: A => IterableOnce[B]): IterableOnce[B]

Attributes

Deprecated
true
Source
IterableOnce.scala
def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1

Attributes

Deprecated
true
Source
IterableOnce.scala
def foldLeft[B](z: B)(op: (B, A) => B): B

Attributes

Deprecated
true
Source
IterableOnce.scala
def foldRight[B](z: B)(op: (A, B) => B): B

Attributes

Deprecated
true
Source
IterableOnce.scala
def forall(f: A => Boolean): Boolean

Attributes

Deprecated
true
Source
IterableOnce.scala
def foreach[U](f: A => U): Unit

Attributes

Deprecated
true
Source
IterableOnce.scala

Attributes

Deprecated
true
Source
IterableOnce.scala
def map[B](f: A => B): IterableOnce[B]

Attributes

Deprecated
true
Source
IterableOnce.scala
def max(implicit ord: Ordering[A]): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def maxBy[B](f: A => B)(implicit cmp: Ordering[B]): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def min(implicit ord: Ordering[A]): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def minBy[B](f: A => B)(implicit cmp: Ordering[B]): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def mkString(start: String, sep: String, end: String): String

Attributes

Deprecated
true
Source
IterableOnce.scala
def mkString(sep: String): String

Attributes

Deprecated
true
Source
IterableOnce.scala

Attributes

Deprecated
true
Source
IterableOnce.scala

Attributes

Deprecated
true
Source
IterableOnce.scala
def product(implicit num: Numeric[A]): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def reduce(f: (A, A) => A): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def reduceLeft(f: (A, A) => A): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def reduceLeftOption(f: (A, A) => A): Option[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def reduceOption(f: (A, A) => A): Option[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def reduceRight(f: (A, A) => A): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def reduceRightOption(f: (A, A) => A): Option[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def sameElements[B >: A](that: IterableOnce[B]): Boolean

Attributes

Deprecated
true
Source
IterableOnce.scala
def size: Int

Attributes

Deprecated
true
Source
IterableOnce.scala
def sum(implicit num: Numeric[A]): A

Attributes

Deprecated
true
Source
IterableOnce.scala
def to[C1](factory: Factory[A, C1]): C1

Attributes

Deprecated
true
Source
IterableOnce.scala
def toArray[B >: A : ClassTag]: Array[B]

Attributes

Deprecated
true
Source
IterableOnce.scala
def toBuffer[B >: A]: Buffer[B]

Attributes

Deprecated
true
Source
IterableOnce.scala

Attributes

Deprecated
true
Source
IterableOnce.scala
final def toIterable: Iterable[A]

Attributes

Deprecated
true
Source
IterableOnce.scala

Attributes

Deprecated
true
Source
IterableOnce.scala
def toList: List[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def toMap[K, V](implicit ev: A <:< (K, V)): Map[K, V]

Attributes

Deprecated
true
Source
IterableOnce.scala
def toSeq: Seq[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def toSet[B >: A]: Set[B]

Attributes

Deprecated
true
Source
IterableOnce.scala
def toStream: Stream[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
final def toTraversable: Iterable[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def toVector: Vector[A]

Attributes

Deprecated
true
Source
IterableOnce.scala
def withFilter(f: A => Boolean): Iterator[A]

Attributes

Deprecated
true
Source
IterableOnce.scala