in scala.collection.jcl
trait MutableSeq

abstract trait MutableSeq [A]
extends java.lang.Object
with scala.collection.jcl.MutableIterable[A]
with scala.Seq[A]
with scala.ScalaObject
A mutable sequence that supports the remove operation and is ordered.
Author:
Sean McDirmid
Direct Known Subclasses:
Filter, Map, Filter, Map, Map, Map, Buffer, Filter, Map

Class Summary
protected class Filter

protected class Map [B]

Def Summary
override def apply (idx: scala.Int) : A

abstract override def elements : scala.collection.jcl.SeqIterator[scala.Int, A]

def indexOf (a: A) : scala.Option[scala.Int]
Find the index of "a" in this sequence.
override def isEmpty : scala.Boolean

override def length : scala.Int

def pfilter (p: (A) => scala.Boolean) : scala.collection.jcl.MutableSeq[A]

override def pmap [B] (f: (A) => B) : scala.collection.jcl.MutableSeq[B]

Def inherited from scala.collection.jcl.MutableIterable[A]
- , --, clear, elements, has, isEmpty, pmap, remove, removeAll, retain, retainAll, size
Def inherited from scala.Seq[A]
++ , concat, contains, copyToArray, drop, dropWhile, filter, flatMap, isDefinedAt, isEmpty, lastIndexOf, length, map, reverse, slice, stringPrefix, subseq, super$drop, super$dropWhile, super$filter, super$take, super$takeWhile, take, takeWhile, toArray, toString
Def Detail
override def apply (idx: scala.Int): A

abstract override def elements : scala.collection.jcl.SeqIterator[scala.Int, A]

def indexOf (a: A): scala.Option[scala.Int]
Find the index of "a" in this sequence.
Returns:
s None if the "a" is not in this sequence.

override def isEmpty : scala.Boolean

override def length : scala.Int

def pfilter (p: (A) => scala.Boolean): scala.collection.jcl.MutableSeq[A]

override def pmap [B](f: (A) => B): scala.collection.jcl.MutableSeq[B]