scala.collection

trait Seq

[source: scala/collection/Seq.scala]

trait Seq[+A]
extends PartialFunction[Int, A] with Iterable[A] with GenericTraversableTemplate[A, Seq] with SeqLike[A, Seq[A]]

Class Seq[A] represents sequences of elements of type A.
It adds the following methods to class Iterable: length, lengthCompare, apply, isDefinedAt, segmentLength, prefixLength, indexWhere, indexOf, lastIndexWhere, lastIndexOf, reverse, reverseIterator, startsWith, endsWith, indexOfSeq.

Author
Martin Odersky
Matthias Zenger
Version
1.0, 16/07/2003
Direct Known Subclasses:
IndexedSeq, LinearSeq, SeqProxy, SeqViewLike, SeqForwarder, Seq, ArrayStack, Seq, Stack

Method Summary
override def companion : GenericCompanion[Seq]
The factory companion object that builds instances of class CC
Methods inherited from SeqLike
length (abstract), apply (abstract), thisCollection, toCollection, lengthCompare, size, isDefinedAt, segmentLength, prefixLength, indexWhere, indexWhere, findIndexOf, indexOf, indexOf, lastIndexOf, lastIndexOf, lastIndexWhere, lastIndexWhere, reverse, reverseMap, reverseIterator, reversedElements, startsWith, startsWith, endsWith, indexOfSeq, indexOfSeq, lastIndexOfSeq, lastIndexOfSeq, contains, union, diff, intersect, removeDuplicates, patch, updated, +:, :+, padTo, sortWith, sortWith, sortBy, toSeq, indices, view, view, hashCode, equals, toString, findLastIndexOf, equalsWith, containsSlice, projection
Methods inherited from IterableLike
iterator (abstract), elements, foreach, forall, exists, find, isEmpty, foldRight, reduceRight, toIterable, head, take, slice, takeWhile, takeRight, dropRight, copyToArray, zip, zipAll, zipWithIndex, sameElements, toStream, canEqual, first, firstOption
Methods inherited from GenericTraversableTemplate
newBuilder, genericBuilder, unzip, flatten, transpose
Methods inherited from TraversableLike
repr, nonEmpty, hasDefiniteSize, ++, ++, map, flatMap, filter, filterNot, partialMap, remove, partition, groupBy, count, foldLeft, /:, :\, reduceLeft, reduceLeftOption, reduceRightOption, sum, product, min, max, headOption, tail, last, lastOption, init, drop, dropWhile, span, splitAt, copyToBuffer, copyToArray, toArray, toList, toIndexedSeq, toSet, mkString, mkString, mkString, addString, addString, addString, stringPrefix, withFilter
Methods inherited from PartialFunction
orElse, andThen
Methods inherited from Function1
compose
Methods inherited from AnyRef
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
override def companion : GenericCompanion[Seq]
The factory companion object that builds instances of class CC
Overrides
Iterable.companion, GenericTraversableTemplate.companion