|
Scala
1.2.0.1 |
|||
Field Summary | |
protected
|
val initialSize: Int
|
Method Summary | |
protected
|
var array: Array[A]
|
protected
|
def copy(m: Int, n: Int, len: Int): Unit
Move parts of the array. |
def elements: Iterator[A]
Returns a new iterator over all elements of this resizable array. |
|
protected
|
def ensureSize(n: Int): Unit
Extends the internal array if more elements are needed. |
def length: Int
Returns the length of this resizable array. |
|
protected
|
var size: Int
|
protected
|
def swap(a: Int, b: Int): Unit
Swap two elements of this array. |
Methods inherited from java/lang/Object-class |
clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, toString, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/Iterable-class |
/:, :\, exists, find, foldLeft, foldRight, forall, foreach, sameElements |
Field Detail |
protected val initialSize: Int
Method Detail |
protected var array: Array[A]
protected var size: Int
protected def ensureSize(n: Int): Unit
protected def swap(a: Int, b: Int): Unit
protected def copy(m: Int, n: Int, len: Int): Unit
def length: Int
def elements: Iterator[A]
|
Scala
1.2.0.1 |
|||