scala.collection

object Iterable

[source: scala/collection/Iterable.scala]

object Iterable
extends TraversableFactory[Iterable]
Factory methods and utilities for instances of type Traversable
Type Summary
type Projection
Method Summary
implicit def builderFactory [A] : BuilderFactory[A, Iterable[A], Iterable]
def max [A](seq : Iterable[A])(implicit view$2 : (A) => Ordered[A]) : A
The maximum element of a non-empty sequence of ordered elements
def min [A](seq : Iterable[A])(implicit view$1 : (A) => Ordered[A]) : A
The minimum element of a non-empty sequence of ordered elements
def newBuilder [A] : Builder[A, Iterable[A]]
Methods inherited from TraversableFactory
concat, fill, fill, fill, fill, fill, tabulate, tabulate, tabulate, tabulate, tabulate, range, range, iterate
Methods inherited from Companion
empty, apply
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Type Details
@deprecated("use View instead")

type Projection

Method Details
implicit def builderFactory[A] : BuilderFactory[A, Iterable[A], Iterable]

def newBuilder[A] : Builder[A, Iterable[A]]

@deprecated("use seq.min instead")

def min[A](seq : Iterable[A])(implicit view$1 : (A) => Ordered[A]) : A
The minimum element of a non-empty sequence of ordered elements

@deprecated("use seq.max iConstead")

def max[A](seq : Iterable[A])(implicit view$2 : (A) => Ordered[A]) : A
The maximum element of a non-empty sequence of ordered elements