scala.collection

object Sequence

[source: scala/collection/Sequence.scala]

object Sequence
extends SequenceFactory[Sequence]
Type Summary
type Projection
Method Summary
implicit def builderFactory [A] : BuilderFactory[A, Sequence[A], Sequence]
def newBuilder [A] : Builder[A, Sequence[A]]
def single [A](x : A) : Sequence[A]
Builds a singleton sequence.
def singleton [A](value : A) : Sequence[A]
Methods inherited from SequenceFactory
unapplySeq
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, Sequence[A], Sequence]

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

@deprecated("use Sequence(value) instead")

def singleton[A](value : A) : Sequence[A]

@deprecated("use <code>Sequence(x)</code> instead.")

def single[A](x : A) : Sequence[A]
Builds a singleton sequence.