|
Scala 2.3.1
|
abstract
trait
SeqProxy
[A]
extends
java.lang.Object
with
scala.Seq[A]
with
scala.IterableProxy[A]
with
scala.ScalaObject
Seq[A]
represents finite sequences of elements
of type A
.Def Summary | |
def
apply
(n: scala.Int)
: A
Access element number n .
|
|
override
|
def
copyToArray
[B >: A]
(xs: scala.Array[B], start: scala.Int)
: scala.Array[B]
Fills the given array xs with the elements of
this sequence starting at position start .
|
override
|
def
drop
(n: scala.Int)
: scala.Seq[A]
Returns a new sub-sequence that drops the first n
elements of this sequence.
|
override
|
def
indexOf
[B >: A]
(elem: B)
: scala.Int
Returns the index of the first occurence of the specified object in this sequence. |
override
|
def
isDefinedAt
(y: scala.Int)
: scala.Boolean
Is this partial function defined for the index x ?
|
override
|
def
lastIndexOf
[B >: A]
(elem: B)
: scala.Int
Returns the index of the last occurence of the specified element in this sequence, or -1 if the sequence does not contain this element. |
def
length
: scala.Int
Returns the length of the sequence. |
|
abstract
|
def
self
: scala.Seq[A]
|
override
|
def
subseq
(from: scala.Int, len: scala.Int)
: scala.Seq[A]
Returns a subsequence starting from index from
consisting of len elements.
|
override
|
def
take
(n: scala.Int)
: scala.Seq[A]
Returns the sub-sequence starting from index n .
|
Def inherited from scala.Seq[A] | |
concat , copyToArray, drop, isDefinedAt, isEmpty, lastIndexOf, length, mkString, stringPrefix, subseq, take, toArray, toString |
Def inherited from scala.IterableProxy[A] | |
/: , :\, elements, exists, find, foldLeft, foldRight, forall, foreach, sameElements, self, toList |
Def Detail |
n
.n
.
override
def
copyToArray
[B >: A](xs: scala.Array[B], start: scala.Int): scala.Array[B]
xs
with the elements of
this sequence starting at position start
.xs -
the array to fill.
start -
starting index.
xs
filled with the elements of this sequence.
n
elements of this sequence.n -
...
elem -
element to search for.
override
def
isDefinedAt
(y: scala.Int): scala.Boolean
x
?x
is a legal sequence index.
elem -
element to search for.
def
length
: scala.Int
from
consisting of len
elements.from -
...
len -
...
n
.n -
...