in scala
class Array

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

Method Summary
abstract def apply(x0: Int): ?T
final def apply(x0: Any): Object
final def exists(x0: (?T) => Boolean): Boolean
final def forall(x0: (?T) => Boolean): Boolean
final def foreach(x0: (?T) => Unit): Unit
final def isDefinedAt(x0: Int): Boolean
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, 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

apply

  final def apply(x0: Any): Object

update

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

foreach

  final def foreach(x0: (?T) => Unit): Unit

forall

  final def forall(x0: (?T) => Boolean): Boolean

exists

  final def exists(x0: (?T) => Boolean): Boolean

isDefinedAt

  final def isDefinedAt(x0: Int): Boolean