Scalax
|
|
scalax/data/FastArrayBuffer.scala
]
class
FastArrayBuffer[A]
extends
scala.RandomAccessSeq.Mutable[A] with
scala.collection.mutable.Buffer[A]Method Summary | |
override def
|
++ [B >: A](iter : scala.Iterable[B]) : FastArrayBuffer[B] |
override def
|
++= (iter : scala.Iterable[A]) : Unit |
override def
|
++= (src : scala.Array[A], s : Int, n : Int) : Unit |
def
|
+: (e : A) : FastArrayBuffer[A] |
def
|
+= (x : A) : Unit |
def
|
apply (i : Int) : A |
def
|
clear : Unit |
override def
|
clone
: FastArrayBuffer[A]
This method creates and returns a copy of the receiver object.
|
override def
|
elements : scala.Iterator[A] |
def
|
insertAll (i : Int, iter : scala.Iterable[A]) : Unit |
def
|
length : Int |
def
|
remove (i : Int) : A |
def
|
update (i : Int, x : A) : Unit |
Methods inherited from scala.RandomAccessSeq | |
scala.RandomAccessSeq.partition, scala.RandomAccessSeq.patch, scala.RandomAccessSeq.toStream, scala.RandomAccessSeq.safeIs |
Methods inherited from scala.Collection | |
scala.Collection.toString |
Methods inherited from scala.PartialFunction | |
scala.PartialFunction.orElse, scala.PartialFunction.andThen |
Methods inherited from scala.Function1 | |
scala.Function1.compose |
Methods inherited from AnyRef | |
getClass, equals, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
def
length : Int
override
def
elements : scala.Iterator[A]
override
def
++=(iter : scala.Iterable[A]) : Unit
override
def
++=(src : scala.Array[A], s : Int, n : Int) : Unit
override
def
++[B >: A](iter : scala.Iterable[B]) : FastArrayBuffer[B]
def
+:(e : A) : FastArrayBuffer[A]
def
insertAll(i : Int, iter : scala.Iterable[A]) : Unit
def
clear : Unit
override
def
clone : FastArrayBuffer[A]
The default implementation of the clone
method is platform dependent.
Scalax
|
|