in scala
class Array

abstract class Array[T](x0: Int)
extends Object
with Cloneable
with java.io.Serializable

Method Summary
abstract def apply(x0: Int): T
abstract def length: Int
abstract def update(x0: Int, x1: T): Unit
abstract def value: Array[T]

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Method Detail

value

  abstract def value: Array[T]

length

  abstract def length: Int

apply

  abstract def apply(x0: Int): T

update

  abstract def update(x0: Int, x1: T): Unit